Route your tool
through one gateway.
Every guide points a different runtime at the same endpoint, gw.databay.co:8888. Pick the tool you use and copy a setup that keeps country, session and browser identity aligned.
HTTP proxying, HTTPS CONNECT, and SOCKS5. No SDK to install.





Choose the guide that matches your runtime
Each runtime attaches proxy settings in a different place. Every guide below maps the tool's native controls to the same gateway, then keeps pool, country and session aligned.
Browser automation
Configure the browser process or an isolated context before the first navigation.
3guides- PlaywrightLaunch-level and per-context proxies across Chromium, Firefox and WebKit, with rotation patterns.Browser process › isolated contexts › independent exit sessionsUpdated · 9 min runbook
- PuppeteerChromium launch flags, page authentication, sticky rotation and production failure handling.--proxy-server › page.authenticate() › page.goto()Updated · 9 min runbook
- SeleniumChrome and Firefox setup, IP whitelisting, Selenium Wire and a Chrome extension fallback.WebDriver › auth decision › Databay gatewayUpdated · 10 min runbook
Multi-profile browser
Keep the saved proxy route attached to the authorized profile that uses it.
6guides- IncognitonPer-profile HTTP or SOCKS5 setup, bulk imports, country targeting and requested sticky sessions.Profile settings › saved Databay route › verified observed exitUpdated · 8 min runbook
- AdsPowerPer-profile HTTP or SOCKS5 setup, the saved Proxies list, bulk profile imports, and Local API provisioning.Proxies list › per-profile flags › pinned exitsUpdated · 12 min runbook
- Dolphin AntyDocumented HTTP or SOCKS5 formats, the Proxy screen checker, per-profile assignment, bulk controls, and same-account sharing.Proxy screen › connection check › saved route › assigned profileUpdated · 13 min runbook
- GoLoginCurrent Location-column setup, Proxy Manager imports, HTTP or SOCKS5 credentials, connection checks, bulk assignment, and API updates.Location column › external proxy › connection check › assigned profileUpdated · 14 min runbook
- MultiloginCurrent regular and Quick profile controls, Databay product selection, four-field authentication, templates, verification, and bounded troubleshooting.Profile settings › Proxy › Custom › HTTP or SOCKS5 › automatic checkUpdated · 12 min runbook
- Octo BrowserCurrent temporary-proxy and Proxy Manager paths, product-specific logins, HTTP/CONNECT versus SOCKS5, route checks, and bounded troubleshooting.Proxy column › temporary or saved route › Check Proxy › observed exitUpdated · 10 min runbook
Crawler framework
Put proxy selection and retry behavior at the crawler downloader boundary.
1guideCommand-line client
Inspect authentication, tunnel and destination behavior one hop at a time.
1guideHTTP client library
Keep application requests, sessions and proxy-agent policy explicit.
3guides- Python RequestsHTTP and SOCKS setup, environment precedence, Session pooling, bounded retries, timeout semantics and exception diagnosis.Session › HTTPAdapter policy › proxy hop › approved destinationUpdated · 18 min runbook
- Node.js fetchNode 24 built-in environment support, runtime global policy, per-request ProxyAgent, version compatibility, 407 and timeout diagnosis.fetch › env opt-in or same-package dispatcher › proxy evidenceUpdated · 13 min runbook
- AxiosAxios 1.18 HTTP and HTTPS routing, environment precedence, agent boundaries, credential redaction, 407 attribution and bounded timeouts.Axios request › route selector › absolute-form or CONNECT › hop evidenceUpdated · 18 min runbook
The tool changes. The gateway grammar does not.
Every guide resolves to the same three decisions: where traffic enters, which pool and geography it should use, and whether the exit must stay attached to an identity.
- One endpoint for HTTP proxying, HTTPS CONNECT, and SOCKS5
- Pool and geography selected in the username
- Requested sticky window up to 120 minutes; continuity can end early
- Country targeting on supported products, with no targeting surcharge
gw.databay.co:8888One host and port for HTTP proxying, HTTPS CONNECT, and SOCKS5.
USER-zone-{pool}-countryCode-{cc}-sessionId-{identity}Pool, geography and persistence live in the username.
curl --proxy http://gw.databay.co:8888 https://httpbin.org/ipCheck the exit from the same runtime that will run the job.
Automate the setup around the runtime
Use the REST API to provision proxy users, manage IP whitelists, read bandwidth and query locations. Your browser or crawler still connects over the same gateway.
- Create, update and delete proxy users
- Monitor bandwidth usage and traffic logs
- Manage IP whitelists for static workers
- Request one country, city, or ASN constraint at a time on Premium Residential
# DATABAY_API_BASE comes from the linked API reference.
curl -X POST \
"${DATABAY_API_BASE}/accounts/{accountId}/proxy-users" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"username": "scraper_us",
"password": "securePass123"
}'Gateway questions, answered
Which protocols do Databay proxies support?
Do I need a special client or SDK?
How do sticky sessions work?
Can I target specific countries?
Connect your tool in minutes
Create an account, grab your gateway credentials, and route your first request today. Using a tool that is not listed yet? Ask us and we will map the exact connection path.
Works with clients that accept standard HTTP(S) or SOCKS5 proxy credentials.