Calculate renewal

POST https://geonix.com/personal/api/v1/{apiKey}/prolong/calc/{type}

Find out how much it will cost to renew your proxies with this endpoint. It gives you an estimate based on the proxy type and renewal period you choose.

Headers

Name
Value

Content-Type

application/json

Accept

application/json

Path parameters

Name
Type
Description

apiKey*

string

API key to authorize requests

type*

string

Available values : ipv4, ipv6, mobile, isp, resident

Body parameters

Name
Type
Description

ids*

array of integers

IDs of the proxies you want to renew. Ensure that the proxy type of the provided IDs matches the "type" path parameter.

periodId*

string

How long you want to renew your proxies for, as identified in the reference list (e.g., "30d" for 30 days).

Request examples

curl -X 'POST' \
  'https://geonix.com/personal/api/v1/YOUR_API_KEY_HERE/prolong/calc/mobile' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
  "ids": [
    105487,
    458746,
    354841,
    845123,
    103547
  ],
  "periodId": "30d",
  "coupon": "OZGCNK_1"
}'

Response examples

Last updated