Docs
Build with Raspbytes APIs and gateway products
Start with API-key authentication, product requests, usage visibility, and the integration patterns available to your account.
Common integration patterns
Use direct proxy connection strings when you need network access, or call Raspbytes APIs when you want managed retrieval, execution, or structured public data workflows.
API-key authentication
Proxy credentials
Queued jobs
Usage visibility
DNS Endpoint
Readyhttp://rb_proxy_abc123-residential-US:PASSWORD@proxy.raspbytes.net:8080IP Endpoint
Readyhttp://rb_proxy_abc123-residential-US:PASSWORD@203.0.113.25:8080cURL
Readycurl --proxy http://rb_proxy_abc123-residential-US:PASSWORD@proxy.raspbytes.net:8080 https://example.comPython
Readyimport requests
proxies = {
"http": "http://rb_proxy_abc123-residential-US:PASSWORD@proxy.raspbytes.net:8080",
"https": "http://rb_proxy_abc123-residential-US:PASSWORD@proxy.raspbytes.net:8080",
}
response = requests.get("https://example.com", proxies=proxies)
print(response.text)Country Targeting
Readyrb_proxy_abc123-residential-US
rb_proxy_abc123-residential-GB
rb_proxy_abc123-residential-DESticky Session
Readyrb_proxy_abc123-residential-US-session-checkout1-ttl-30