Copy-paste code examples for integrating mobile proxies with your favorite tools. From browser automation to HTTP libraries, we've got you covered.
# 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"
Click any card for detailed setup instructions and code examples.
Cross-browser automation with native proxy support.
View GuideChrome DevTools Protocol for headless automation.
View GuideIndustry-standard browser automation suite.
View GuideSimple HTTP library for Python developers.
View GuideHTTP clients for JavaScript/TypeScript.
View GuideProfessional web scraping framework.
View GuideCommand-line HTTP client for quick testing.
View GuideGo, Rust, PHP, Ruby, and more
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://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
Set HTTP_PROXY and HTTPS_PROXY in your shell or .env file for automatic proxy usage.
export HTTP_PROXY=socks5://... export HTTPS_PROXY=socks5://...
Create a session object with proxy config for connection reuse and better performance.
session.proxies = {
"http": proxy,
"https": proxy
}Pass proxy config with each request for maximum control and rotation.
requests.get(url, proxies={
"https": get_next_proxy()
})Optimized routing for minimal response time overhead.
Full HTTPS support with proper certificate handling.
Maintain same IP across requests with session IDs.
Target specific geos with country-specific ports.
Get your API credentials and start integrating mobile proxies in minutes.