Documentation
Developer
Documentation
Everything you need to integrate our proxy services into your applications. Quick start guides for every language.
Quick Start
Get Started in Minutes
Follow these simple steps to start using our proxy services in your application.
1. Get Your Credentials
Sign up for an account and get your proxy credentials from the dashboard.
2. Configure Your Client
Use our code examples to configure your HTTP client with proxy settings.
3. Start Making Requests
Make your first request through our proxy network and see the magic happen.
Code Examples
Integration Examples
Ready-to-use code snippets for popular programming languages. Just copy, paste, and customize.
Python Example
import requests
# Proxy configuration
proxies = {
'http': 'http://username:[email protected]:8080',
'https': 'https://username:[email protected]:8080'
}
# Headers for better compatibility
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36'
}
# Make request through proxy
try:
response = requests.get(
'https://api.ipify.org?format=json',
proxies=proxies,
headers=headers,
timeout=30
)
print(f"Status Code: {response.status_code}")
print(f"Response: {response.json()}")
except requests.exceptions.RequestException as e:
print(f"Error: {e}")