Docs
Get Started in Minutes
Drop Raspbytes into standard proxy clients and scraping frameworks without custom SDKs.
Proxy patterns
Use the DNS connection string by default, or the IP connection string when a client needs a pinned gateway address. HTTP(S) proxy support works with cURL, Python, Node.js, Puppeteer, Playwright, Scrapy, and most standard proxy clients.
Country targeting
Rotating sessions
Sticky sessions
Email support
DNS Endpoint
Readyhttp://rb_proxy_abc123-residential-US:PASSWORD@gateway.raspbytes.com:8443IP Endpoint
Readyhttp://rb_proxy_abc123-residential-US:PASSWORD@203.0.113.25:8443cURL
Readycurl -x http://rb_proxy_abc123-residential-US:PASSWORD@gateway.raspbytes.com:8443 https://example.comPython
Readyimport requests
proxies = {
"http": "http://rb_proxy_abc123-residential-US:PASSWORD@gateway.raspbytes.com:8443",
"https": "http://rb_proxy_abc123-residential-US:PASSWORD@gateway.raspbytes.com:8443",
}
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