Limited time: Get 30% off on all annual plans — use code BIUBIU30Claim offer
Documentation

Everything you need to get started

Quickstart guides, API references, and integration examples — all in one place.

Browse by topic

Code examples

Python
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"}
Node.js
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' }

Can't find what you're looking for?

Our support team is online 7 days a week. Average first response time under 2 hours.