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

Getting Whitelisted IPs List

Find the RESTful API endpoint and code examples for retrieving your current list of whitelisted Dedicated ISP Proxies IPs.

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?