Create order

The request allows to make new order IPv4

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

Path Parameters

NameTypeDescription

apiKey*

String

Your personal api key

Request Body

NameTypeDescription

proxyType*

String

Proxy type IPv4

authIp

String

Authorization ip. This field is required only if authType is IP

authType*

String

Authorization type. Available values: LOGIN, IP

goal*

String

Custom goal

country*

String

Alfa3 country code (can be obtained by another request)

promoCode

String

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

quantity*

Number

Quantity of ip addresses

rentPeriodDays*

Number

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

{
    "success": true,
    "proxyType": "IPv4",
    "orderNumber": "NUMBER-112233",
    "balance": 4.57,
    "currency": "USD",
    "error": null,
    "promoCodeStatus": null
}

The request allows to make new order IPv6

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

Path Parameters

NameTypeDescription

apiKey*

String

Your personal api key

Request Body

NameTypeDescription

proxyType*

String

Proxy type IPv6

protocol*

String

Protocol. Available values: HTTP, SOCKS

quantity*

Number

Quantity of ip addresses

rentPeriodDays*

Number

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

authIp

String

Authorization ip. This field is required only if authType is IP

authType*

String

Authorization type. Available values: LOGIN, IP

goal*

String

Custom goal

country*

String

Alfa3 country code (can be obtained by another request)

promoCode

String

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

{
    "success": true,
    "proxyType": "IPv6",
    "orderNumber": "NUMBER-22334455",
    "balance": 3.76,
    "currency": "USD",
    "error": null,
    "promoCodeStatus": null
}

The request allows to make new order MOBILE

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

Path Parameters

NameTypeDescription

apiKey*

String

Your personal api key

Request Body

NameTypeDescription

proxyType*

String

Proxy type MOBILE

rotationTime*

String

Rotation time (can be obtained by another request with mobile operators)

mobileOperator*

String

Mobile operator tag (can be obtained by another request)

quantity*

Number

Quantity of ip addresses

rentPeriodDays*

Number

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

authIp

String

Authorization ip. This field is required only if authType is IP

authType*

String

Authorization type. Available values: LOGIN, IP

goal*

String

Custom goal

country*

String

Alfa3 country code (can be obtained by another request)

promoCode

String

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

{
    "success": true,
    "proxyType": "MOBILE",
    "orderNumber": "NUMBER-4455566677",
    "balance": 1.95,
    "currency": "USD",
    "error": null,
    "promoCodeStatus": null
}

The request allows to make new order ISP

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

Path Parameters

NameTypeDescription

apiKey*

String

Your personal api key

Request Body

NameTypeDescription

proxyType*

String

Proxy type ISP

authIp

String

Authorization ip. This field is required only if authType is IP

authType*

String

Authorization type. Available values: LOGIN, IP

goal*

String

Custom goal

country*

String

Alfa3 country code (can be obtained by another request)

promoCode

String

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

quantity*

Number

Quantity of ip addresses

rentPeriodDays*

Number

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

{
    "success": true,
    "proxyType": "ISP",
    "orderNumber": "NUMBER-112233",
    "balance": 4.57,
    "currency": "USD",
    "error": null,
    "promoCodeStatus": null
}

Last updated