Quick Start
Get your first proxy request working in under 5 minutes.
Prerequisites
You need a RaxyProxy account and an active proxy package. No SDK, no local install — just an HTTP client.
Create an account
Go to raxyproxy.com/register and sign up. Email verification is required before you can purchase.
Buy a package
Go to Dashboard → Buy. Select a proxy type, choose your GB amount, and complete payment. Your package is activated instantly after payment is confirmed. Not ready to commit? Try the $5.99 trial.
Get your credentials
Go to Dashboard → Proxies. Find your active package and copy your username and password. These are unique per package type — you'll use them in every proxy connection.
Password rotation
You can rotate your password any time from the Proxies page. Existing connections using the old password will disconnect immediately.
Make your first request
Replace USERNAME and PASSWORD with your actual credentials.
curl -x http://USERNAME:PASSWORD@proxy.raxyproxy.com:823 \
https://httpbin.org/ipYou should see a JSON response with an IP address — that's the proxy IP, not yours.
import requests
proxies = {
"http": "http://USERNAME:PASSWORD@proxy.raxyproxy.com:823",
"https": "http://USERNAME:PASSWORD@proxy.raxyproxy.com:823",
}
r = requests.get("https://httpbin.org/ip", proxies=proxies)
print(r.json()) # {"origin": "203.0.113.42"}import fetch from 'node-fetch';
import { HttpsProxyAgent } from 'https-proxy-agent';
const agent = new HttpsProxyAgent('http://USERNAME:PASSWORD@proxy.raxyproxy.com:823');
const res = await fetch('https://httpbin.org/ip', { agent });
console.log(await res.json());Add geo-targeting
Append geo parameters to your username using double underscore (__) as a separator. This routes your traffic through IPs in a specific country.
curl -x http://USERNAME__cr.us:PASSWORD@proxy.raxyproxy.com:823 \
https://httpbin.org/ipCountry targeting is always free for all proxy types. See Geo-Targeting for the full parameter reference.
Next steps
- Connection Format — all ports, protocols, and URL formats
- Session Types — rotating vs. sticky sessions
- Geo-Targeting — country, state, city, ZIP, ASN
- REST API — manage packages and generate proxies programmatically
- Code Examples — Python, Node.js, PHP, Go, Playwright, Scrapy