Quick Start
DocsQuick Start

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.

1

Create an account

Go to raxyproxy.com/register and sign up. Email verification is required before you can purchase.

2

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.

3

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.

4

Make your first request

Replace USERNAME and PASSWORD with your actual credentials.

cURL
curl -x http://USERNAME:PASSWORD@proxy.raxyproxy.com:823 \
     https://httpbin.org/ip

You should see a JSON response with an IP address — that's the proxy IP, not yours.

Python
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"}
Node.js
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());
5

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 — US only
curl -x http://USERNAME__cr.us:PASSWORD@proxy.raxyproxy.com:823 \
     https://httpbin.org/ip

Country targeting is always free for all proxy types. See Geo-Targeting for the full parameter reference.

Next steps