Documentation has been updated: see help center and changelog in one place.

Getting Whitelisted IPs List

Retrieve whitelisted IPs list via API for Enterprise Dedicated Datacenter Proxies. Get all currently authorized IPs and their unique identifiers.

GET https://api.oxylabs.io/v1/whitelisted_ips

Response
Description

200

Success. Response body contains all currently whitelisted IPs and their ids.

Code example

curl -u username:password "https://api.oxylabs.io/v1/whitelisted_ips"

Sample output

{
    "data": [
        {
            "id": 9765,
            "address": "127.0.0.1"
        },
        {
            "id": 9766,
            "address": "127.0.0.2"
        }
    ]
}

Last updated

Was this helpful?