Network Proxy
4/16/26Less than 1 minute
Network Proxy
Set Network Proxy
Type
API
URI
/channel-api/open-api/proxy/add
Request Method
POST、Content-Type: application/json
API Description
None
Request Parameter Description
| Field | Type | Required | Remarks |
|---|---|---|---|
| vendorType | int | Yes | Proxy provider type: 1 IDEA, 2 ROSE, 3 CAKE, 4 Other |
| protocolType | int | Yes | Protocol type: 1 socks4, 2 socks5 (currently only supports this), 3 http, 4 https |
| type | int | Yes | Proxy type: 0 dynamic IP (not supported), 1 static IP |
| countryCode | String | Yes | Country code |
| proxyInfo | String | Yes | Proxy configuration information |
| maxCount | int | Yes | Number of agents to allocate |
| startTime | String | Yes | Start time |
| endTime | String | Yes | End time |
Request example:
[
{
"vendorType": "IDEA",
"protocolType": 1,
"type": 1,
"countryCode": "CN",
"proxyInfo": "socks5://username:pass@IP:port",
"maxCount": 3,
"startTime": "2025-09-01 10:00:01",
"endTime": "2025-09-18 10:00:01"
}
]Response Parameter Description
Parameter Name Type Required Remarks code int Yes Status code message String Yes Description data String Yes Response Example
{
"code": 200,
"message": "Success",
"data": ""
}