Extend by ip addresses

The request allows to extend ip addresses for proxy type IPv4

POST /client/api/v1/{apiKey}/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) All ipAddressIds are separated by commas, for example ["11111", "22222"]

rentPeriodDays*

Number

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

{
    "success": true,
    "proxyType": "IPv4",
    "rentPeriodDays": 30,
    "quantity": 1,
    "ipAddressIds": [
        "1111111111111111111"
    ],
    "balance": 0.65,
    "currency": "USD",
    "error": null,
    "promoCodeStatus": null
}

The request allows to extend ip addresses for proxy type IPv6

POST /client/api/v1/{apiKey}/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*

List

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

All ip addresses from the order must be extended immediately All ipAddressIds are separated by commas, for example ["11111", "22222"]

rentPeriodDays*

Number

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

{
    "success": true,
    "proxyType": "IPv6",
    "rentPeriodDays": 30,
    "quantity": 1,
    "ipAddressIds": [
        "22222222222222222"
    ],
    "balance": 0.65,
    "currency": "USD",
    "error": null,
    "promoCodeStatus": null
}

The request allows to extend ip addresses for proxy type MOBILE

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

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) All ipAddressIds are separated by commas, for example ["11111", "22222"]

rentPeriodDays*

Number

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

{
    "success": true,
    "proxyType": "MOBILE",
    "rentPeriodDays": 30,
    "quantity": 1,
    "ipAddressIds": [
        "333333333333333333"
    ],
    "balance": 0.65,
    "currency": "USD",
    "error": null,
    "promoCodeStatus": null
}

The request allows to extend ip addresses for proxy type ISP

POST /client/api/v1/{apiKey}/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) All ipAddressIds are separated by commas, for example ["11111", "22222"]

rentPeriodDays*

Number

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

{
    "success": true,
    "proxyType": "ISP",
    "rentPeriodDays": 30,
    "quantity": 1,
    "ipAddressIds": [
        "444444444444444"
    ],
    "balance": 0.65,
    "currency": "USD",
    "error": null,
    "promoCodeStatus": null
}

Last updated