Menu

Proxy List

Instructions

Retrieve a list of proxies, supports pagination, with a maximum of 100 entries per page.

Request Description

  • Method: POST
  • Endpoint: /api/v1/proxy/list

Request Parameters

Parameter Type Required Description
page int No Page number, defaults to the first page if not provided
pagesize int No Number of entries per page, defaults to 10 entries per page if not provided

Request Example

json Copy
{
    "page": 1,
    "pagesize": 100
}

Response Parameters

Parameter Type Description
id string Proxy ID
name string Proxy name
host string Host
port string Port
user string Account
area string Region
group_ids array Proxy group IDs
group_name array Proxy group Names

Response Example

json Copy
{
    "code": 200,
    "data": {
        "list": [
            {
                "id": "xx", // Proxy ID
                "name": "xx", // Name
                "host": "127.0.0.1",
                "port": "3001",
                "user": "user",
                "area": "US",
                "group_ids": [
                    "xxxx",
                    "xxxx"
                ],
                "group_name": [
                    "xxxx",
                    "xxxx"
                ]
            }
        ],
        "page": 1,
        "pagesize": 10,
        "total": 1,
        "total_page": 1
    },
    "message": "Success"
}
Previous
Proxy
Next
Batch Add Proxies
Last modified: 2026-06-16Powered by