Skip to main content

Setup & Management

Order, configure, and manage your datacenter proxies.

AI Summary

Get a summary of this page using your preferred AI assistant.

Ordering Proxies

Via Dashboard

  1. Go to Dashboard > Datacenter
  2. Click "Order Proxy"
  3. Select type (IPv4 or IPv6), country, duration, and quantity
  4. Confirm the order

Your proxies are provisioned instantly. You will see the IP address, ports, username, and password for each proxy.

Via API

Bash
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:

Bash
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:

Bash
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

Bash
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:

Bash
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:

Bash
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:

Bash
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:

Bash
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:

Bash
1curl -H "X-Session-Token: YOUR_TOKEN" \
2  https://api.proxyon.io/v1/datacenter/list