Skip to main content
GET
/
v1
/
static
/
list
Static IP list
curl --request GET \
  --url https://api.example.com/v1/static/list \
  --header 'X-Api-Key: <api-key>'
{
  "ip_list": [
    {
      "id": 1,
      "host": "geo.g-w.info",
      "port": 10080,
      "username": "username",
      "password": "password",
      "ip": "123.45.67.89",
      "country_code": "US",
      "country_name": "United States",
      "proxy_type": "isp"
    }
  ],
  "pending_ip_amount": 1
}

Authorizations

X-Api-Key
string
header
required

Response

200 - application/json

Successful response

Static IP List Response

ip_list
object[]
required

List of static IPs

Example:
[
{
"id": 1,
"host": "geo.g-w.info",
"port": 10080,
"username": "username",
"password": "password",
"ip": "123.45.67.89",
"country_code": "US",
"country_name": "United States",
"proxy_type": "isp"
}
]
pending_ip_amount
number
required

Amount of pending IPs

Example:

1