Get IP lists

GET https://geonix.com/personal/api/v1/{apiKey}/resident/lists

This endpoint provides a list of your existing IP lists in a package, making it easy to see all your residential proxy setups.

To download your specific list of residential proxies, use the endpoint: https://geonix.com/personal/api/v1/{apiKey}/proxy/download/resident?listId=123. Replace {apiKey} with your API key and 123 with your list ID for direct download of the proxy list.

Headers

Name
Value

Accept

application/json

Path parameters

Name
Type
Description

apiKey*

string

API key to authorize requests

Request examples

curl -X 'GET' \
  'https://geonix.com/personal/api/v1/YOUR_API_KEY/resident/lists' \
  -H 'accept: application/json'

Response examples

{
  "status": "success",
  "data": {
    "items": [
      {
        "id": 3350393,
        "title": "US Washington Garfield FIRST-STEP",
        "login": "3c8aa1d4",
        "password": "AZT62Dx3",
        "whitelist": "127.0.0.1,192.168.0.1",
        "rotation": "-1 = rotation, 0 = rotation per request, 1..60 time in seconds",
        "geo": [
          {
            "country": "US",
            "region": "Washington",
            "city": "Garfield",
            "isp": "FIRST-STEP"
          }
        ],
        "export": {
          "ports": 1000,
          "ext": "txt"
        }
      }
    ]
  },
  "errors": []
}

Last updated