Proxy API
A residential proxy network with sticky sessions and a flat single-port endpoint. Use it when Smart AI Proxy isn't flexible enough - direct access to the IP pool with rotation under your control.
Faster routing, AI-driven ban avoidance, fewer config knobs. Proxy Backconnect is deprecated but existing integrations continue to work - no shutdown is scheduled.
Endpoint
# Username = your token + optional session/country qualifiers
# Password = blankBasic usage
curl -x 'http://YOUR_TOKEN:@backconnect.crawlbase.com:9000' \
'https://httpbin.org/ip'import requests
proxies = {
'http': 'http://YOUR_TOKEN:@backconnect.crawlbase.com:9000',
'https': 'http://YOUR_TOKEN:@backconnect.crawlbase.com:9000',
}
res = requests.get('https://httpbin.org/ip', proxies=proxies)Each request goes through a different residential IP by default - pure rotation.
Sticky sessions
To pin requests to a single IP, append a session ID to your username. The same session ID returns the same IP for ~30 minutes.
# Format: TOKEN-session-SESSION_ID
curl -x 'http://YOUR_TOKEN-session-checkout42:@backconnect.crawlbase.com:9000' \
'https://shop.example.com/cart'Country targeting
# Format: TOKEN-country-XX
curl -x 'http://YOUR_TOKEN-country-DE:@backconnect.crawlbase.com:9000' \
'https://www.amazon.de'
# Combine: country + session
curl -x 'http://YOUR_TOKEN-country-DE-session-cart-1:@backconnect.crawlbase.com:9000' \
'https://www.amazon.de/cart'Username qualifiers
Reference of all available username modifiers, combined with hyphens.
| Format | Effect |
|---|---|
TOKEN | Default - random IP per request |
TOKEN-country-XX | IPs from country XX (ISO 3166) |
TOKEN-session-NAME | Sticky to one IP for ~30 min |
TOKEN-country-XX-session-NAME | Sticky session within a country |
Static IPs and geolocalization
When you need to keep the same exit IP across multiple requests - multi-step checkout flows, account login + scrape, anything that depends on the target site recognizing the same client - Backconnect can lock a static IP and hand back the port + session lifetime. The proxy then keeps that IP bound to your token as long as you keep using it inside the session window.
The static-IP endpoint is rate-limited to 1 request per 5 minutes per country (or 1 per 5 minutes overall if no country is specified). Cache the port your client receives - don't re-request on every crawl.
Static IPs and country targeting may not be available on every Backconnect plan, and country availability varies by tier. If you get an unauthorized response, check your plan or contact support before retrying.
Get a static IP
Returns a port to use with proxy.crawlbase.com, plus the seconds the binding stays alive. The session timer auto-extends as long as you keep sending traffic through that port within the window.
curl 'https://api.crawlbase.com/proxy/static?token=YOUR_TOKEN'
# Response
# { "port": 1234, "host": "proxy.crawlbase.com", "session_time": 10 }Static IP from a specific country
Pass a 2-letter ISO 3166 country code (US, GB, DE, IT, RU, …) to pin the static IP to that geography. If no port is currently free in the requested country, the response carries an error - back off and retry against the country-bucket rate limit.
curl 'https://api.crawlbase.com/proxy/static?token=YOUR_TOKEN&country=FR'
# Response
# { "port": 4551, "host": "proxy.crawlbase.com", "session_time": 10 }IP whitelisting
Backconnect supports IP whitelisting - let your server's outbound IPs authenticate against the proxy without sending the token on every request. Useful for fixed-IP pipelines that don't want credentials in code, and the only way to use Backconnect from environments that can't pass a Proxy-Authorization header.
Three endpoints, all under /proxy/whitelist_ips, differentiated by HTTP method. Changes take up to 1 minute to propagate.
Whitelist management may not be available on every plan, and a per-plan cap limits how many IPs can be whitelisted at once. An unauthorized response means your tier doesn't include the feature; contact support to upgrade.
Add a whitelisted IP
curl -X POST 'https://api.crawlbase.com/proxy/whitelist_ips?token=YOUR_TOKEN&ip=123.123.123.123'Remove a whitelisted IP
curl -X DELETE 'https://api.crawlbase.com/proxy/whitelist_ips?token=YOUR_TOKEN&ip=123.123.123.123'View whitelisted IPs
Returns the current list of whitelisted IPs for your token, in JSON.
curl 'https://api.crawlbase.com/proxy/whitelist_ips?token=YOUR_TOKEN'Backconnect vs Smart AI Proxy
| Smart AI Proxy | Backconnect | |
|---|---|---|
| Use case | Easy mode - auto-routing, anti-bot bypass | Direct IP pool access, custom rotation |
| JS rendering | Available | No (raw proxy) |
| Auto-retry | Yes | No - handle yourself |
| Sticky sessions | Via header | Via username |
| Best for | Most users | Custom scrapers, network research |
Backconnect is the lower-level tool. If you don't have a specific reason to use it, Smart AI Proxy gives better results with less work.

