IP List

Returns the list of currently ordered IPs.

Return IP list

POST https://api.ipnux.com/V1/OpenApi/OpenApiNodeList

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

order_id

string

Order ID after creating the order

proxy_ids

array [integer]

array of proxies

proxy_address

string

proxy address

city_name

string

Fill in the name of the city

continents_name

string

North America,South America,Europe,Asia,Oceania,Africa

proxy_status

integer

1=Normal,2=Disabled,3=Maintenance

is_auto_renew

integer

false=auto-renewal is off,true=auto-renewal is on

expiring_days

integer

List of nodes that are about to expire, query using days

Request

{
    "proxies_type": "Shared (ISP) proxies",
    "proxies_format": 2,
    "proxy_ids": [1789840567002312345]
} 

Response

{
    "Code": 1000,
    "Message": "Successful",
    "Data": {
        "count": 1,
        "proxies_type": "Shared (ISP) proxies",
        "proxies_format": 2,
        "results": [
            {
                "proxy_id": 1789840567002312345,
                "username": "L7A2o8P4Z4c0",
                "password": "e7V9z9m0K8O4",
                "proxy_address": "1.1.1.1",
                "port": 5555,
                "protocols": 3,
                "proxy_status": 1,
                "continents_id": 1789831789720761234,
                "continents_name": "North America",
                "country_code": "US",
                "city_id": "96123",
                "city_name": "San Jose",
                "created_at": "2024-05-13T02:10:19.444609",
                "expired_at": "2024-06-14T02:10:19.457524",
                "udp_status": true,
                "order_id": "123nBJ",
                "permissions": false,
                "is_auto_renew": false,
                "created_at_unix": 1715566219,
                "expired_at_unix": 1718331019
            }
        ]
    }
}

Last updated