API V2
Proxy List Endpoint
Return active proxy records sorted by uptime.
POST
/v2/proxy-list
API key
Required. Responses are unlimited with a valid API key.
Parameters
| Name | Required | Description |
|---|---|---|
| Authorization | Yes | Header. Use Bearer YOUR_API_KEY. |
| limit | No | Body field. Number of proxy records to return. Minimum 1, maximum 100. Defaults to 10. |
Example Request
POST https://api.iplocation.net/v2/proxy-list
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{
"limit": 2
}
Example Response
{
"result": [
{
"ip": "139.59.51.139",
"country": "AU",
"city": "Mackay",
"port": 80,
"type": "https",
"uptime": "45.10"
}
],
"response_code": "200",
"response_message": "OK"
}