Skip to main content
POST
/
orders
/
{order_id}
/
bandwidth
Buy bandwidth
curl --request POST \
  --url https://api.proxyjam.com/public/v1/orders/{order_id}/bandwidth \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "bandwidth_gb": 123
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.proxyjam.com/llms.txt

Use this file to discover all available pages before exploring further.

Adds bandwidth to the proxy at the provider level and deducts the cost from your wallet.
This action is billed immediately from your wallet balance. Ensure you have sufficient funds before calling this endpoint.

Path parameters

order_id
string
required
UUID of the order.

Request body

bandwidth_gb
integer
required
Additional traffic to purchase in GB. Min 1, max 5000.

Response

Updated proxy object reflecting the new bandwidth_total_gb. Same shape as the managed_proxy object in Get order.

Example

curl -X POST "https://api.proxyjam.com/public/v1/orders/997b4450-e7ae-4ad9-8a25-996e582049c9/bandwidth" \
  -H "X-API-Key: pj_AbCdEf..." \
  -H "Content-Type: application/json" \
  -d '{"bandwidth_gb": 10}'