1. Pool
ProxyManager V1.0.0(developer)
  • Router
    • List Routers
      GET
    • Router Detail
      GET
    • Create Router
      POST
    • Update Router
      PUT
    • Delete Router
      DELETE
  • Pool
    • List Pools
      GET
    • Create Pool
      POST
    • Update Pool
      PUT
    • Delete Pool
      DELETE
  1. Pool

List Pools

GET
https://api.proxymanager.top/api/v1/pools/list

Request

Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff 'https://api.proxymanager.top/api/v1/pools/list?token={{token}}&pageIndex=1&pageSize=10'

Responses

🟢200success
application/json
Bodyapplication/json

Example
{
    "data": [
        {
            "name": "text for pool from API",
            "description": "This is a sample pool description",
            "poolId": "51dba870-****-4bd0-8884-155ba1afba03",
            "teamId": "d1192f87-****-47e5-845a-530b5de87048",
            "userId": "972fd435-****-4860-a082-e35b75ec3dd4",
            "status": 1,
            "isCheck": true,
            "proxyList": [
                "http://proxy1.com:8080",
                "http://proxy2.com:8080"
            ],
            "rule": {
                "type": 2,
                "metadata": {
                    "limit": {
                        "count": 100,
                        "second": 60
                    }
                }
            },
            "reqCount": 0,
            "useBytes": 0,
            "creator": {
                "userId": "0b5839ee-****-4193-a8c8-202c6eeca14c",
                "userName": "********@gmail.com"
            },
            "createdAt": "2025-09-01T02:53:58.495Z",
            "updatedAt": "2025-09-01T02:53:58.495Z"
        }
    ],
    "total": 1,
    "pageIndex": "1",
    "pageSize": "10"
}
Modified at 2025-10-11 06:14:52
Previous
Delete Router
Next
Create Pool
Built with