> ## Documentation Index
> Fetch the complete documentation index at: https://anyip.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Integration Guides

> Ready-to-use proxy configurations for AdsPower, Dolphin, Python, Node.js, Selenium, Puppeteer, and other popular automation tools. Copy-paste examples with authentication.

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](https://anyip.io/blog/how-to-use-proxy-with-adspower)            |
| **Dolphin Anty**  | [Dolphin Anty Proxy Integration](https://anyip.io/blog/how-to-use-proxy-with-dolphin-anty)        |
| **GoLogin**       | [GoLogin Proxy Integration](https://anyip.io/blog/how-to-use-proxy-with-gologin)                  |
| **Incogniton**    | [Incogniton Proxy Integration](https://anyip.io/blog/how-to-use-proxy-with-incogniton)            |
| **Ghost Browser** | [Ghost Browser Proxy Integration](https://anyip.io/blog/how-to-use-proxy-with-ghost-browser)      |
| **ixBrowser**     | [ixBrowser Proxy Integration](https://anyip.io/blog/ixbrowser-proxy-integration-ultimate-guide)   |
| **Octobrowser**   | [Octobrowser Proxy Integration](https://anyip.io/blog/octo-browser-proxy-integration-quick-guide) |

### Mobile (iOS & Android)

| Platform               | Tutorial                                                                                         |
| :--------------------- | :----------------------------------------------------------------------------------------------- |
| **Shadowrocket (iOS)** | [Set Up Proxies with Shadowrocket](https://anyip.io/blog/configure-shadowrocket-iphone-ipad-ios) |
| **Potatso (iOS)**      | [Set Up Proxies with Potatso](https://anyip.io/blog/how-to-use-potatso-iphone-ipad-ios)          |
| **iPhone/iPad Native** | [Configure Proxy on iPhone/iPad](https://anyip.io/blog/how-to-configure-proxy-on-iphone-ipad)    |
| **Android Native**     | [Set Up Proxies in Android](https://anyip.io/blog/how-to-setup-proxies-android)                  |
| **Android SOCKS5**     | [Set Up SOCKS5 Proxy in Android](https://anyip.io/blog/how-to-setup-socks5-proxy-android)        |

### Desktop Browsers

| Browser     | Tutorial                                                                                  |
| :---------- | :---------------------------------------------------------------------------------------- |
| **Chrome**  | [Set Up SOCKS5 Proxy in Chrome](https://anyip.io/blog/how-to-setup-socks5-proxy-chrome)   |
| **Firefox** | [Set Up SOCKS5 Proxy in Firefox](https://anyip.io/blog/how-to-setup-socks5-proxy-firefox) |

### Programming Languages

| Language                 | Tutorial                                                                               |
| :----------------------- | :------------------------------------------------------------------------------------- |
| **Python Requests**      | [How to Use Proxies with Python Requests](https://anyip.io/blog/python-requests-proxy) |
| **Python POST Requests** | [How to Make a POST with Python Requests](https://anyip.io/blog/python-requests-post)  |
| **Python User-Agent**    | [How to Customize Your User-Agent](https://anyip.io/blog/python-requests-user-agent)   |
| **Python Retry Logic**   | [Handling Failed HTTP Requests](https://anyip.io/blog/python-requests-retry)           |
| **PHP (Guzzle)**         | [Scraping with Guzzle & anyIP](https://anyip.io/blog/guzzle-proxy-scraping)            |

***

## ⚡ Quick Reference

Don't have time for a full tutorial? Here's the quick setup for common tools.

### Anti-Detect Browsers (AdsPower, Dolphin, etc.)

1. **Proxy Type:** `SOCKS5` (Preferred) or `HTTP`
2. **Host/IP:** `portal.anyip.io`
3. **Port:** `1080`
4. **Username:** Your full string (e.g., `user_XXXX,country_US,session_pro1`)
5. **Password:** Your proxy password

<Note>
  **Connection Test Failed?**

  If the "Check Proxy" button fails, **check your data balance**.
  Anti-detect browsers will show a generic "Connection Error" if your plan has expired or you are out of data.
</Note>

### Shadowrocket / Potatso (iOS)

1. **Type:** SOCKS5
2. **Address:** `portal.anyip.io`
3. **Port:** `1080`
4. **User:** `user_XXXX,country_US`
5. **Password:** Your password

<Warning>
  **iCloud Private Relay**

  You **MUST** turn OFF "iCloud Private Relay" in your iPhone settings, or it will block the connection.
</Warning>

***

## 💻 Code Examples

### Python (Requests)

```python theme={null}
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)

```javascript theme={null}
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

```bash theme={null}
curl -x "http://user_XXXX,country_US:PASSWORD@portal.anyip.io:1080" http://ip-api.com/json
```
