Ordering Proxies
Via Dashboard
- Go to Dashboard > Datacenter
- Click "Order Proxy"
- Select type (IPv4 or IPv6), country, duration, and quantity
- Confirm the order
Your proxies are provisioned instantly. You will see the IP address, ports, username, and password for each proxy.
Via API
1curl -X POST https://api.proxyon.io/v1/datacenter/order \
2 -H "X-Session-Token: YOUR_TOKEN" \
3 -d "type=ipv4" \
4 -d "country=US" \
5 -d "duration=30" \
6 -d "quantity=10"
See the API overview for authentication details.
Checking Stock
Before ordering, you can check available stock per country:
1curl -H "X-Session-Token: YOUR_TOKEN" \
2 https://api.proxyon.io/v1/datacenter/stock
This returns available IPs by type and country.
IP Whitelisting
Instead of using credentials, you can whitelist your server IP for credential-free access.
Add an IP
From the dashboard, click your proxy and use "Bind IP". Or via API:
1curl -X POST https://api.proxyon.io/v1/datacenter/PROXY_ID/bindIp \
2 -H "X-Session-Token: YOUR_TOKEN" \
3 -d "ip=YOUR_SERVER_IP"
Remove an IP
1curl -X POST https://api.proxyon.io/v1/datacenter/PROXY_ID/unbindIp \
2 -H "X-Session-Token: YOUR_TOKEN" \
3 -d "ip=YOUR_SERVER_IP"
You can whitelist multiple IPs per proxy.
Renewing Proxies
Extend a proxy's duration before it expires:
1curl -X POST https://api.proxyon.io/v1/datacenter/PROXY_ID/renew \
2 -H "X-Session-Token: YOUR_TOKEN" \
3 -d "duration=30"
Available durations: 3, 7, 14, 30, 60, or 90 days.
Resetting Credentials
Generate a new username and password. The old credentials are invalidated immediately:
1curl -X POST https://api.proxyon.io/v1/datacenter/PROXY_ID/reset \
2 -H "X-Session-Token: YOUR_TOKEN"
Viewing Proxy Info
Get full details for a specific proxy including IP, ports, credentials, whitelisted IPs, and expiration:
1curl -H "X-Session-Token: YOUR_TOKEN" \
2 https://api.proxyon.io/v1/datacenter/PROXY_ID/info
Deleting Proxies
Remove a proxy before it expires:
1curl -X DELETE -H "X-Session-Token: YOUR_TOKEN" \
2 https://api.proxyon.io/v1/datacenter/PROXY_ID
This action is permanent and cannot be undone.
Listing All Proxies
View all your active datacenter proxies:
1curl -H "X-Session-Token: YOUR_TOKEN" \
2 https://api.proxyon.io/v1/datacenter/list