Retrieve existing IP lists

This request retrieves all created lists in the subuser's package.

GET https://proxy-seller.com/api/v1/{YourApiKey}/residentsubuser/lists

Example:

https://proxy-seller.com/api/v1/fj4948ffhg58gh843gh/residentsubuser/lists

Path parameters:

NameValueDescription

Authorization

<Your_API_Key>

Your personal API key

Query parametrs:

Name

package_key

String

The key of the subuser's package from which you want to view the proxy lis

listId

Number

The ID of the list you want to view

Responses:

{
  "status": "success",
  "data": {
    "items": [
      {
        "id": 561,
        "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": 10000,
          "ext": "txt"
        }
      }
    ]
  },
  "errors": []
}

Last updated