API Documentation
Check proxies, read job results, and pull verified proxy lists programmatically. All endpoints are authenticated with an API key and rate limited per account tier.
Getting started
1. Create a key
Generate an API key at Account → API Keys. The full key is shown only once.
2. Call the API
Send the key in the Authorization header on every request.
3. Go premium
Premium accounts get higher rate limits and access to the premium proxy pool.
https://your-domain/api/v1Authentication
Every request must include your API key as a Bearer token. Keys start with pk_live_ and are tied to your account's role and permissions.
Authorization: Bearer pk_live_YOUR_KEYTreat keys like passwords: never commit them, never expose them in client-side code. Revoking a key at Account → API Keys blocks it immediately.
Endpoints
/api/proxies| Parameter | Type | Description |
|---|---|---|
| protocol | string | http, https, socks4 or socks5 |
| country | string | ISO country code, e.g. US |
| anonymity | string | transparent, anonymous or elite |
| fresh_minutes | int | Only proxies checked within N minutes (default 1440) |
| max_latency_ms | int | Maximum connect latency |
| min_uptime | float | Minimum uptime score (0–1) |
| page / limit | int | Pagination; limit 1–200 (default 50) |
curl "https://your-domain/api/v1/api/proxies?protocol=socks5&country=US&limit=20" \
-H "Authorization: Bearer pk_live_YOUR_KEY"{
"page": 1,
"limit": 20,
"total": 1342,
"refreshed_at": "2026-06-10T08:00:00Z",
"items": [
{
"proxy_norm": "1.2.3.4:1080",
"protocol": "socks5",
"country": "US",
"uptime_score": 0.98,
"checked_at": "2026-06-10T07:59:12Z"
}
]
}/api/proxies/export| Parameter | Type | Description |
|---|---|---|
| format | string | txt (default), csv or json |
| …filters | — | Same filters as /api/proxies |
curl -o proxies.txt "https://your-domain/api/v1/api/proxies/export?format=txt&protocol=http" \
-H "Authorization: Bearer pk_live_YOUR_KEY"/api/check| Parameter | Type | Description |
|---|---|---|
| proxies_text | string | Newline-separated proxies (required) |
| include_anonymity | bool | Also detect anonymity level (slower) |
curl -X POST "https://your-domain/api/v1/api/check" \
-H "Authorization: Bearer pk_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"proxies_text": "1.2.3.4:1080\n5.6.7.8:8080"}'{ "job_id": "9f1c…", "status": "queued", "total": 2 }/api/jobs/{jobId}{
"job_id": "9f1c…",
"status": "completed",
"total": 2,
"done": 2,
"created_at": "2026-06-10T08:00:00Z",
"finished_at": "2026-06-10T08:00:21Z"
}/api/jobs/{jobId}/items{
"page": 1,
"limit": 50,
"total": 2,
"items": [
{
"proxy_norm": "1.2.3.4:1080",
"status": "live",
"protocol": "socks5",
"connect_ms": 230,
"ttfb_ms": 510,
"exit_ip": "1.2.3.4",
"country": "US"
}
]
}/api/jobs/{jobId}/exportcurl -o results.csv "https://your-domain/api/v1/api/jobs/<JOB_ID>/export?format=csv" \
-H "Authorization: Bearer pk_live_YOUR_KEY"/api/premium/proxiescurl "https://your-domain/api/v1/api/premium/proxies" \
-H "Authorization: Bearer pk_live_YOUR_KEY"Rate limits
Limits are applied per API key. When a limit is exceeded the API returns 429 Too Many Requests — back off and retry after the window resets. Default limits:
| Category | Applies to | Free | Premium |
|---|---|---|---|
| api_read | Proxy lists, job status & results | 60 / min | 300 / min |
| api_check | Submitting check jobs | 20 / hour | 200 / hour |
| api_export | File exports | 10 / hour | 60 / hour |
Errors
Errors are returned as JSON: {"error": "message"}
| Status | Meaning |
|---|---|
| 400 | Invalid request — bad parameters or no valid proxies in proxies_text |
| 401 | Missing or invalid API key |
| 403 | Key is valid but your role lacks the required permission, account is not active, or premium is required |
| 429 | Rate limit exceeded for this category — retry later |
| 5xx | Server error — safe to retry with backoff |
Code examples
Full check-and-poll workflow: submit proxies, wait for the job, read results.
# 1. Submit proxies for checking
curl -X POST "https://your-domain/api/v1/api/check" \
-H "Authorization: Bearer pk_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"proxies_text": "1.2.3.4:1080\n5.6.7.8:8080"}'
# -> {"job_id":"<JOB_ID>", ...}
# 2. Poll job status until "completed"
curl "https://your-domain/api/v1/api/jobs/<JOB_ID>" \
-H "Authorization: Bearer pk_live_YOUR_KEY"
# 3. Fetch results
curl "https://your-domain/api/v1/api/jobs/<JOB_ID>/items" \
-H "Authorization: Bearer pk_live_YOUR_KEY"