# Targeting set in the username:
# cc=country, c=city, r=region, isp=ISP, s=session
import requests
username = "cc=us-c=atlanta"
proxy = f"http://{username}:YOUR_PASSWORD@res.ipb.cloud:1080"
proxies = {"http": proxy, "https": proxy}
r = requests.get("https://api.ipify.org", proxies=proxies)
print(f"IP: {r.text}")
# Targeting set in the username:
# cc=country, c=city, r=region, isp=ISP, s=session
curl -x http://cc=us-c=atlanta:YOUR_PASSWORD@res.ipb.cloud:1080 \
https://api.ipify.org
// Targeting set in the username:
// cc=country, c=city, r=region, isp=ISP, s=session
const axios = require('axios');
const { HttpsProxyAgent } = require('https-proxy-agent');
const username = 'cc=us-c=atlanta';
const proxy = `http://${username}:YOUR_PASSWORD@res.ipb.cloud:1080`;
const agent = new HttpsProxyAgent(proxy);
axios.get('https://api.ipify.org', { httpsAgent: agent })
.then(r => console.log(`IP: ${r.data}`))
.catch(err => console.error(err));
<?php
// Targeting set in the username:
// cc=country, c=city, r=region, isp=ISP, s=session
$username = 'cc=us-c=atlanta';
$proxy = "http://{$username}:YOUR_PASSWORD@res.ipb.cloud:1080";
$ch = curl_init('https://api.ipify.org');
curl_setopt($ch, CURLOPT_PROXY, $proxy);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo "IP: " . $response;