Skip to main content
POST
/
orders
/
{order_id}
/
extend
Extend proxy
curl --request POST \
  --url https://api.proxyjam.com/public/v1/orders/{order_id}/extend \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "months": 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.

Charges your wallet and extends the proxy subscription at the provider level.
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

months
integer
required
Number of months to extend. Min 1, max 24.

Response

Updated proxy object with the new expires_at. 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/extend" \
  -H "X-API-Key: pj_AbCdEf..." \
  -H "Content-Type: application/json" \
  -d '{"months": 1}'