NovaProxy Docs
Products

Static ISP

Dedicated static ISP proxies by duration and country

Overview

Slug: static-isp · Type: duration

Static ISP is sold by billing period. Each duration exposes a country select; you must send the chosen values in the order config (slug-based JSON). See Create Static ISP order.

Proxy ports

Typical listener ports (confirm on your issued credentials if they differ):

  • HTTP(S): 59100
  • SOCKS5: 59101

Example connection string: host:59100:username:password

Plan resource

durations[].slug is what you send as duration on POST /orders. When options is non-empty for that duration, supply every option via config keyed by option.name (for example country).

GET /plans/static-isp

{
    "id": 10,
    "name": "Static ISP",
    "slug": "static-isp",
    "type": "duration",
    "has_geo_targeting": false,
    "has_ip_whitelist": false,
    "rotations": [],
    "protocols": [
        { "code": "http", "port": 59100 },
        { "code": "socks5", "port": 59101 }
    ],
    "durations": [
        {
            "id": 13,
            "slug": "1_month",
            "duration": 1,
            "duration_unit": "month",
            "duration_in_minutes": 43200,
            "price": 6.99,
            "options": [
                {
                    "id": 21,
                    "name": "country",
                    "label": "Country",
                    "type": "select",
                    "options": [
                        { "value": uk, "label": "United Kingdom"},
                        { "value": us, "label": "United States"}
                        ...
                    ],
                    "min": null,
                    "max": null,
                    "step": null
                }
            ]
        },
        {
            "id": 14,
            "slug": "3_months",
            "duration": 3,
            "duration_unit": "month",
            "duration_in_minutes": 131400,
            "price": 16.99,
            "options": [ /* same country option shape */ ]
        },
        {
            "id": 15,
            "slug": "6_months",
            "duration": 6,
            "duration_unit": "month",
            "duration_in_minutes": 262800,
            "price": 29.99,
            "options": [ /* ... */ ]
        },
        {
            "id": 16,
            "slug": "1_year",
            "duration": 1,
            "duration_unit": "year",
            "duration_in_minutes": 525600,
            "price": 49.99,
            "options": [ /* ... */ ]
        }
    ]
}

Submit config.country using the value from this list (serialize numbers or strings to match the API response).

On this page