Complete guide to integrating and using Confabulate proxy services in your applications
Quick setup guide to get your proxies running
How to authenticate your proxy requests
Understanding different proxy offerings
Code examples for popular programming languages
How to target specific geographic locations
Advanced proxy configuration settings
import requests
proxies = {
'http': 'http://username:password@proxy.confabulate.io:8000',
'https': 'http://username:password@proxy.confabulate.io:8000'
}
response = requests.get('https://httpbin.org/ip', proxies=proxies)
print(response.json())
const axios = require('axios');
const proxy = {
host: 'proxy.confabulate.io',
port: 8000,
auth: {
username: 'your_username',
password: 'your_password'
}
};
axios.get('https://httpbin.org/ip', { proxy })
.then(response => console.log(response.data))
.catch(error => console.error(error));
curl -x username:password@proxy.confabulate.io:8000 \
-H "Content-Type: application/json" \
https://httpbin.org/ip
residential.confabulate.io:8000
static-residential.confabulate.io:8001
datacenter.confabulate.io:8002
static-datacenter.confabulate.io:8003