Calculate Pricing
Returns a product list containing plans, locations, questions and quantity discounts.
This endpoint returns the pricing for a custom plan.
POST https://api.ipnux.com/V1/OpenApi/OpenApiGetCurrentVersionPrice
Headers
Name
Type
Description
UserId*
String
"Authentication" generated userId
Token*
String
"Authentication" generated token
Content-Type*
String
application/json
Body
Name
Type
Description
proxies_type*
string
Shared (ISP) proxies
Premium (ISP) proxies
proxies_format*
integer
Shared (ISP) proxies=2
Premium (ISP) proxies=2
time_period*
integer
Number of days to order
currency*
string
USD
Request
{
    "proxies_type": "Shared (ISP) proxies",
    "proxies_format": 2,
    "time_period": 30,
    "currency": "USD"
}Respons
{
    "Code": 1000,
    "Message": "Successful",
    "Data": {
        "proxies_type": "Shared (ISP) proxies",
        "proxies_format": 2,
        "time_period": 30,
        "currency": "USD",
        "proxies_count_discount_tiers": [
            {
                "from": 0,
                "to": 0,
                "discount_percentage": 5,
                "per_proxy_price": 8.0,
                "unit_price_mode": true,
                "country_name": "Sydney"
            },
            {
                "from": 0,
                "to": 0,
                "discount_percentage": 55,
                "per_proxy_price": 7.0,
                "unit_price_mode": true,
                "country_name": "Hong Kong"
            },
            {
                "from": 0,
                "to": 0,
                "discount_percentage": 33,
                "per_proxy_price": 5.0,
                "unit_price_mode": true,
                "country_name": "Tokyo"
            }
        ]
    }
}Last updated