Getting Started
Set up your first proxy connection in under 5 minutes.
Quickstart guides, API references, and integration examples — all in one place.
Set up your first proxy connection in under 5 minutes.
Rotating and sticky residential IPs with geo-targeting.
Static IPs assigned by real ISPs for persistent identities.
High-speed server IPs for latency-sensitive workloads.
Programmatically manage proxies, sub-users and analytics.
Ready-made examples for popular frameworks and tools.
import requests
proxies = {
"http": "http://user:pass@resi.ipbiubiu.com:8080",
"https": "http://user:pass@resi.ipbiubiu.com:8080",
}
r = requests.get("https://httpbin.org/ip", proxies=proxies)
print(r.json()) # {"origin": "203.0.113.1"}const axios = require('axios')
const { HttpsProxyAgent } = require('https-proxy-agent')
const agent = new HttpsProxyAgent(
'http://user:pass@resi.ipbiubiu.com:8080'
)
const res = await axios.get('https://httpbin.org/ip', {
httpsAgent: agent,
})
console.log(res.data) // { origin: '203.0.113.1' }Our support team is online 7 days a week. Average first response time under 2 hours.