Calculate extend by ip addresses

The request allows to calculate price before extend ip addresses for proxy type IPv4

POST /client/api/v1/{apiKey}/calculate/extend

Path Parameters

NameTypeDescription

apiKey*

String

Your personal api key

Request Body

NameTypeDescription

proxyType*

String

Proxy type IPv4

promoCode

String

Code of promo code (can be obtained by another request)

ipAddressIds*

List

Ip addresses ids for extend (can be obtained by another request)

rentPeriodDays*

Number

Number of days of rental period (can be obtained by another request)

{
    "success": true,
    "proxyType": "IPv4",
    "balance": 7.18,
    "price": 2.65,
    "currency": "USD",
    "discount": 0,
    "promoCodeStatus": null,
    "error": null,
    "warnings": null
    ]
}

The request allows to calculate price before extend ip addresses for proxy type IPv6

POST /client/api/v1/{apiKey}/calculate/extend

Path Parameters

NameTypeDescription

apiKey*

String

Your personal api key

Request Body

NameTypeDescription

proxyType*

String

Proxy type IPv6

promoCode

String

Code of promo code (can be obtained by another request)

ipAddressIds*

String

Ip addresses ids for extend (can be obtained by another request).

All ip addresses from the order must be extended immediately

rentPeriodDays*

Number

Number of days of rental period (can be obtained by another request)

{
    "success": true,
    "proxyType": "IPv6",
    "balance": 7.18,
    "price": 2.65,
    "currency": "USD",
    "discount": 0,
    "promoCodeStatus": null,
    "error": null,
    "warnings": null
    ]
}

The request allows to calculate price before extend ip addresses for proxy type MOBILE

POST /client/api/v1/{apiKey}/calculate/extend

The request allows to calculate price before extend ip addresses for proxy type MOBILE

Path Parameters

NameTypeDescription

apiKey*

String

Your personal api key

Request Body

NameTypeDescription

proxyType*

String

Proxy type MOBILE

promoCode

String

Code of promo code (can be obtained by another request)

ipAddressIds*

List

Ip addresses ids for extend (can be obtained by another request)

rentPeriodDays*

Number

Number of days of rental period (can be obtained by another request)

{
    "success": true,
    "proxyType": "MOBILE",
    "balance": 7.18,
    "price": 2.65,
    "currency": "USD",
    "discount": 0,
    "promoCodeStatus": null,
    "error": null,
    "warnings": null
    ]
}

The request allows to calculate price before extend ip addresses for proxy type ISP

POST /client/api/v1/{apiKey}/calculate/extend

Path Parameters

NameTypeDescription

apiKey*

String

Your personal api key

Request Body

NameTypeDescription

proxyType*

String

Proxy type ISP

promoCode

String

Code of promo code (can be obtained by another request)

ipAddressIds*

List

Ip addresses ids for extend (can be obtained by another request)

rentPeriodDays*

Number

Number of days of rental period (can be obtained by another request)

{
    "success": true,
    "proxyType": "ISP",
    "balance": 7.18,
    "price": 2.65,
    "currency": "USD",
    "discount": 0,
    "promoCodeStatus": null,
    "error": null,
    "warnings": null
    ]
}

Last updated