Residential Proxies

Access our premium residential proxy networks with unlimited bandwidth and pay-as-you-go options.

Available Residential Proxy Types

Premium Unlimited

Enterprise-grade unlimited residential proxies with global coverage

  • 70M+ Global IPs
  • 190+ Countries
  • Unlimited Bandwidth
  • City & State Targeting
From $250/day

Budget Unlimited

High-volume scraping with unlimited bandwidth and 10K IPs

  • 10K+ ISP IPs
  • Unlimited Bandwidth
  • US, GB, FR, CA, DE & RU
  • Sticky Sessions
From $51.99/month

Not suitable for streaming

Platinum Residential

45M+ premium residential IPs with pay-per-GB pricing

  • 45M+ Premium IPs
  • 190+ Countries
  • City & State Targeting
  • 99.9% Success Rate
From $3.00/GB

Connection Details

Premium Unlimited Configuration

Parameter Value
Endpoint premium.proxyomega.com
Port 9000
Authentication Username/Password from dashboard
Protocols HTTP, HTTPS, SOCKS5

Platinum Residential Configuration

Parameter Value
Endpoint platinum.proxyomega.com
Port 20228
Authentication Username/Password from dashboard
Session Control Sticky sessions with TTL

Mobile Proxy Configuration

Parameter Value
Endpoint mobile.proxyomega.com
Port 20229
Authentication Username/Password from dashboard
Network Type 4G/5G Mobile Networks

Usage Examples

bash
# Premium Unlimited
curl -x http://username:[email protected]:9000 https://api.ipify.org

# Platinum with country targeting
curl -x http://username-country-us:[email protected]:20228 https://api.ipify.org

# Platinum with region targeting
curl -x http://username-country-us-region-colorado:[email protected]:20228 https://api.ipify.org

# Platinum with sticky session (with TTL)
curl -x http://username-session-abc123-ttl-30:[email protected]:20228 https://api.ipify.org

# Mobile proxy
curl -x http://username:[email protected]:20229 https://api.ipify.org
python
import requests

# Premium Unlimited
proxies = {
    'http': 'http://username:[email protected]:9000',
    'https': 'http://username:[email protected]:9000'
}

response = requests.get('https://api.ipify.org', proxies=proxies)
print(response.text)
javascript
const axios = require('axios');
const HttpsProxyAgent = require('https-proxy-agent');

const agent = new HttpsProxyAgent(
  'http://username:[email protected]:9000'
);

axios.get('https://api.ipify.org', { httpsAgent: agent })
  .then(response => console.log(response.data))
  .catch(error => console.error(error));