Veloxy API

Programmatically purchase, provision and manage mobile proxies for your customers. Authenticate with an API key, pay from your balance, and receive real-time webhook notifications.

⚡ 20 endpoints🛡 HMAC-SHA256 webhooks🌎 46 US locations🧾 REST + JSON

Quick start

All requests require a Bearer token with your rv_-prefixed API key:

curl https://veloxy.top/v1/reseller/balance \
  -H "Authorization: Bearer rv_YOUR_API_KEY"

Purchase a proxy in three steps:

# 1. Browse products
curl https://veloxy.top/v1/reseller/products \
  -H "Authorization: Bearer rv_KEY"

# 2. Create an order
curl -X POST https://veloxy.top/v1/reseller/orders \
  -H "Authorization: Bearer rv_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id": 1, "pricing_id": 2}'

# 3. Pay with balance
curl -X POST https://veloxy.top/v1/reseller/orders/42/pay \
  -H "Authorization: Bearer rv_KEY"
POST/v1/reseller/keys

Create an API key

The raw key is shown only once. Store it securely.

Body
{ "name": "production" }
Response
{
  "id": 1,
  "name": "production",
  "raw_key": "rv_xxxxxxxxxxxxxxxxxxxxxxxx",
  "created_at": "2026-05-26T03:00:00Z"
}
GET/v1/reseller/balance

Get balance

Response
{ "balance": "30.00", "total_spent": "40.00" }
GET/v1/reseller/products

List products

POST/v1/reseller/orders

Create order

Body
{ "product_id": 1, "pricing_id": 2 }
POST/v1/reseller/orders/{order_id}/pay

Pay from balance

GET/v1/reseller/proxies

List proxies

POST/v1/reseller/proxies/{proxy_id}/connect

Connect to a city

Body
{ "location_id": "NYC" }
POST/v1/reseller/proxies/{proxy_id}/reset

Rotate IP

Body
{ "mode": "fast" }
POST/v1/reseller/proxies/{proxy_id}/fingerprint

Set device fingerprint

Body
{ "fingerprint": "macos" }
POST/v1/reseller/webhooks

Register a webhook

Body
{ "url": "https://your.api/notify", "secret": "shared_secret", "events": "*" }