Developer Resources

Proxy Integration Guidesfor Every Framework

Copy-paste code examples for integrating mobile proxies with your favorite tools. From browser automation to HTTP libraries, we've got you covered.

Quick Start

# SOCKS5 proxy format
socks5://user:pass@proxy.proxies.sx:10001

# HTTP proxy format
http://user:pass@proxy.proxies.sx:10001

# Environment variables
export HTTP_PROXY="socks5://user:pass@proxy.proxies.sx:10001"
export HTTPS_PROXY="socks5://user:pass@proxy.proxies.sx:10001"

Supported Proxy Formats

SOCKS5 (Recommended)

socks5://username:password@proxy.proxies.sx:10001

# With authentication
socks5h://user:pass@proxy.proxies.sx:10001

# DNS resolution through proxy (socks5h)
socks5h://user:pass@proxy.proxies.sx:10001

Best for: Browser automation, full TCP support, DNS privacy

HTTP/HTTPS

http://username:password@proxy.proxies.sx:10001

# HTTPS (same format, different port if needed)
https://user:pass@proxy.proxies.sx:10001

# URL-encoded special characters
http://user:p%40ss@proxy.proxies.sx:10001

Best for: HTTP libraries, simple requests, legacy systems

Common Integration Patterns

Environment Variables

Set HTTP_PROXY and HTTPS_PROXY in your shell or .env file for automatic proxy usage.

export HTTP_PROXY=socks5://...
export HTTPS_PROXY=socks5://...

Session-Based

Create a session object with proxy config for connection reuse and better performance.

session.proxies = {
  "http": proxy,
  "https": proxy
}

Per-Request

Pass proxy config with each request for maximum control and rotation.

requests.get(url, proxies={
  "https": get_next_proxy()
})

Developer-Friendly Features

Low Latency

Optimized routing for minimal response time overhead.

TLS Support

Full HTTPS support with proper certificate handling.

Sticky Sessions

Maintain same IP across requests with session IDs.

15+ Countries

Target specific geos with country-specific ports.

Start Building Today

Get your API credentials and start integrating mobile proxies in minutes.