Quickstart

Get connected to ProxyOmega in three steps. Pick a plan, set up access, and make your first request. The whole thing takes about two minutes.

i
Cheapest way to test. The 1-day, 5-port Budget Unlimited plan is $5.99 and gives you unlimited bandwidth across five rotating residential ports. It's a good way to try things out before you scale up.

Step 1: Sign in and get a plan

Head to the ProxyOmega dashboard and create an account, or sign in if you already have one. Once you're in, buy or activate a plan from any of the six products:

  • Budget Unlimited: shared residential, unlimited bandwidth, priced by port count.
  • Premium Unlimited: dedicated-speed residential, unlimited bandwidth, flat-rate.
  • Residential / ISP: Tier-1 ISP-quality residential, pay-as-you-go by the GB.
  • Mobile: real 4G/5G carrier IPs, pay-as-you-go by the GB.
  • IPv6: thread-based, datacentre-grade IPv6.
  • Static ISP: dedicated single-owner static US residential IPs.

For your first test we recommend the 1-day 5-port Budget Unlimited plan at $5.99. You can pay by card, crypto, or from your account balance. The rest of this page uses Budget Unlimited for the examples.

Step 2: Set up access

ProxyOmega gives you two ways to connect. Pick whichever suits your setup, and you can use both if you want.

Option A: Whitelist your IP (credential-free)

If you're connecting from a server with a static public IP, add that IP under Whitelist in the dashboard. Once whitelisted, you connect with no username or password, because your IP is recognised and let straight through.

Option B: Username and password

Your proxy username and password are shown in the dashboard. Use them for connections from dynamic or shared IPs, or from any machine you haven't whitelisted. The format is always:

http://USERNAME:[email protected]:10000
i
More detail. Both methods, plus API-key auth for the REST API, are covered in full on the Authentication page.

Step 3: Make your first request

With a Budget Unlimited plan active, connect to residential.proxyomega.com on any port in your assigned block (10000-10099). Here's a curl request that routes through the proxy and returns the exit IP:

curl -x "http://USERNAME:[email protected]:10000" https://api.ipify.org

Replace USERNAME and PASSWORD with the values from your dashboard. The response is a proxied residential IP, not your own:

203.0.113.47
i
That's it. You're connected. Because Budget Unlimited rotates by default, each new request without a fixed session returns a different IP. Run the command a few times and watch it change.

Add country targeting

To pin your traffic to a specific country, append -country- and a two-letter country code to the username. The password stays exactly the same. This example routes through a US IP:

curl -x "http://USERNAME-country-us:[email protected]:10000" https://api.ipify.org

Swap us for any supported code, such as -country-de (Germany) or -country-gb (United Kingdom). Targeting parameters, sticky sessions, and TTL are all set the same way. See Targeting for the full syntax.

i
No need to build these by hand. The dashboard's proxy-list generator builds ready-to-use username strings with your targeting and session options already applied.

Next steps

You're up and running. Here's where to go from here:

Authentication

IP whitelisting, username/password, and API-key auth: how each works and when to use it.

Targeting

Country, state, city, and ASN parameters, plus sticky sessions and TTL, appended to your username.

Code examples

Ready-to-run snippets for Python, Node.js, and more across all six products.

Last updated July 6, 2026