Integration Guides
Don’t guess the settings. Find your tool below and copy the setup.
📚 Step-by-Step Tutorials
We have detailed tutorials with screenshots for every major platform. Click through for the full guide.
Anti-Detect Browsers
| Tool | Tutorial |
|---|---|
| AdsPower | Setting Up Proxies on AdsPower |
| Dolphin Anty | Dolphin Anty Proxy Integration |
| GoLogin | GoLogin Proxy Integration |
| Incogniton | Incogniton Proxy Integration |
| Ghost Browser | Ghost Browser Proxy Integration |
| ixBrowser | ixBrowser Proxy Integration |
| Octobrowser | Octobrowser Proxy Integration |
Mobile (iOS & Android)
| Platform | Tutorial |
|---|---|
| Shadowrocket (iOS) | Set Up Proxies with Shadowrocket |
| Potatso (iOS) | Set Up Proxies with Potatso |
| iPhone/iPad Native | Configure Proxy on iPhone/iPad |
| Android Native | Set Up Proxies in Android |
| Android SOCKS5 | Set Up SOCKS5 Proxy in Android |
Desktop Browsers
| Browser | Tutorial |
|---|---|
| Chrome | Set Up SOCKS5 Proxy in Chrome |
| Firefox | Set Up SOCKS5 Proxy in Firefox |
Programming Languages
| Language | Tutorial |
|---|---|
| Python Requests | How to Use Proxies with Python Requests |
| Python POST Requests | How to Make a POST with Python Requests |
| Python User-Agent | How to Customize Your User-Agent |
| Python Retry Logic | Handling Failed HTTP Requests |
| PHP (Guzzle) | Scraping with Guzzle & anyIP |
⚡ Quick Reference
Don’t have time for a full tutorial? Here’s the quick setup for common tools.
Anti-Detect Browsers (AdsPower, Dolphin, etc.)
- Proxy Type:
SOCKS5(Preferred) orHTTP - Host/IP:
portal.anyip.io - Port:
1080 - Username: Your full string (e.g.,
user_XXXX,country_US,session_pro1) - Password: Your proxy password
Shadowrocket / Potatso (iOS)
- Type: SOCKS5
- Address:
portal.anyip.io - Port:
1080 - User:
user_XXXX,country_US - Password: Your password
đź’» Code Examples
Python (Requests)
import requests
proxies = { "http": "http://user_XXXX,country_US:PASSWORD@portal.anyip.io:1080", "https": "http://user_XXXX,country_US:PASSWORD@portal.anyip.io:1080",}
try: r = requests.get("http://ip-api.com/json", proxies=proxies, timeout=10) print(r.json())except Exception as e: print(f"Error: {e}")Node.js (Axios)
const axios = require('axios');const { HttpsProxyAgent } = require('https-proxy-agent');
const proxyUrl = 'http://user_XXXX:PASSWORD@portal.anyip.io:1080';const agent = new HttpsProxyAgent(proxyUrl);
axios.get('https://ip-api.com/json', { httpsAgent: agent }) .then(response => console.log(response.data)) .catch(error => console.error(error));cURL
curl -x "http://user_XXXX,country_US:PASSWORD@portal.anyip.io:1080" http://ip-api.com/json