Quick Start Guide
Get up and running with ProxyOmega in less than 5 minutes. This guide will walk you through account setup, authentication, and making your first proxy request.
Step 1: Create Your Account
Sign up for a ProxyOmega account at dashboard.proxyomega.com/register. You'll receive instant access to your dashboard where you can manage your proxies and view usage statistics.
Step 2: Get Your Credentials
After logging in to your dashboard:
- Navigate to the Credentials section
- Copy your username and password
- Note your assigned proxy endpoint
Security Tip
Never share your credentials publicly or commit them to version control. Use environment variables to store sensitive information.
Step 3: Whitelist Your IP
For enhanced security, add your IP address to the whitelist:
Dashboard
1. Go to Settings → IP Whitelist
2. Click "Add IP Address"
3. Enter your IP or use "Add Current IP"
4. Save changes
Step 4: Make Your First Request
Choose your preferred method to connect through ProxyOmega:
bash
# Premium Unlimited
curl -x http://username:[email protected]:9000 \
-L https://httpbin.org/ip
# Budget Unlimited (Use any port from 10000-10099)
curl -x http://username:[email protected]:10000 \
-L https://httpbin.org/ip
# Platinum with geographic targeting
curl -x http://username-country-us:[email protected]:20228 \
-L https://httpbin.org/ip
# Mobile proxies
curl -x http://username:[email protected]:20229 \
-L https://httpbin.org/ip
# IPv6 proxies (different server)
curl -x http://username:[email protected]:9000 \
-L https://httpbin.org/ip
# SOCKS5 protocol (works with all proxy types)
curl -x socks5://username:[email protected]:10050 \
-L https://httpbin.org/ip
python
import requests
# For Premium Unlimited
proxies = {
'http': 'http://username:[email protected]:9000',
'https': 'http://username:[email protected]:9000'
}
# For Budget Unlimited
# proxies = {
# 'http': 'http://username:[email protected]:10000',
# 'https': 'http://username:[email protected]:10000'
# }
response = requests.get('https://httpbin.org/ip', proxies=proxies)
print(response.json())
javascript
const axios = require('axios');
const HttpsProxyAgent = require('https-proxy-agent');
// For Premium Unlimited
const agent = new HttpsProxyAgent(
'http://username:[email protected]:9000'
);
// For Budget Unlimited
// const agent = new HttpsProxyAgent(
// 'http://username:[email protected]:10000'
// );
axios.get('https://httpbin.org/ip', { httpsAgent: agent })
.then(response => console.log(response.data))
.catch(error => console.error(error));