IP-authenticated proxy list
Returns proxy endpoints that accept connections from an IP address already added to your whitelist.
IP-authenticated entries use the host:port format.
Rate limit10 requests / 60 seconds
ParametersX-API-Key header, authentication=ip_authentication, protocol=http, amount=2, output=json
Endpoint details
FormatEach address is returned as host:port.
Whitelist requiredThe requesting account must whitelist its connecting IPv4 address before using these endpoints.
Authentication valueUse authentication=ip_authentication. The aliases ip, ip_auth and ip-auth are also accepted.
Port sourceOnly active proxies collection documents matching IP authentication and the selected protocol are used.
Request · Python requests
import requests
params = {
"authentication": "ip_authentication",
"protocol": "http",
"amount": "2",
"output": "json",
}
response = requests.get(
"https://rotatingproxyhub.com/api/v1.0/datacenter/proxies",
headers={"X-API-Key": "xxx"},
params=params,
timeout=30
)
print(response.text)Example response
{
"success": true,
"message": "Rotating proxy list retrieved successfully.",
"proxy_amount": 2,
"authentication": "ip_authentication",
"amount_per_document": 2,
"data": [
{
"address": "51.15.21.75:20000",
"host": "51.15.21.75",
"port": 20000,
"type": "rotating",
"class": "datacenter",
"protocol": "http",
"country": "World",
"region_code": "world",
"authentication": "ip_authentication",
"authentication_label": "IP Authentication"
},
{
"address": "51.15.21.75:20001",
"host": "51.15.21.75",
"port": 20001,
"type": "rotating",
"class": "datacenter",
"protocol": "http",
"country": "World",
"region_code": "world",
"authentication": "ip_authentication",
"authentication_label": "IP Authentication"
}
]
}