Getting Whitelisted IPs List
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?