Please update to the latest patch version to use it.
Basics
POST /api/v2/proxy-list/list
Description: Query the proxy information in the Proxy List.
Request Parameters
Optional Body parameters can be omitted, and the parameter format is JSON.
Name | Type | Necessary | Default | Example | Description |
Proxy_id | text | No | - | ["1", "2" ,"3"] | The proxy ID of the proxies that need to be queried. The maximum is 100. |
limit | text | No | 50 | 1 | How many proxies are returned per page, range 1-200. |
page | text | No | 1 | 1 | Check the data from which page |
Return Data
// Operation succeeded
{
"data": {
"list": [
{
"proxy_id": "xxx",
"type": "http",
"host": "192.168.0.1",
"port": "8000",
"user": "",
"password": "",
"proxy_url": "",
"remark": "remark",
"ipchecker": "ip2location",
"proxy_partner": "", //Proxy Provider
"profile_count": "0", //Number of profile linked to this proxy
"related_profile_no": [], //Profile No. of the profiles related to the proxy
"proxy_tags": []
},
{
"proxy_id": "xxx",
"type": "https",
"host": "192.168.0.1",
"port": "8001",
"user": "username",
"password": "password",
"proxy_url": "https://www.baidu.com/",
"remark": "remark1",
"ipchecker": "ipfoxy",
"proxy_partner": "", //Proxy Provider
"profile_count": "2", //Number of profile linked to this proxy
"related_profile_no": ["xxx","xxx"], //Profile No. of the profiles related to the proxy
"proxy_tags": [
{
"name": "proxytagsname", //name of the proxy tag
"color": "blue", //color of the proxy tag
"id": "34117" //proxy tag id
}
]
}
],
"total": 2, //sum
"page": 1,
"page_size": 10
},
"code": 0,
"msg": "Success"
}
//Operation failed
{
"code":-1,
"data":{},
"msg":"failed"
}