GET Pool Limits
-------------------------------------------
OVERVIEW
-------------------------------------------
Endpoint: GET /api/v1/pools/limits
Method: GET
Authentication: Not Required
Rate Limit: 100 requests/minute
PURPOSE:
Retrieves minimum and maximum deposit/withdrawal limits for all pools.
-------------------------------------------
EXAMPLE RESPONSE
-------------------------------------------
{
"success": true,
"limits": [
{
"poolId": "cipherx-bsc-01",
"denomination": "0.1",
"currency": "BNB",
"minDeposit": "0.1",
"maxDeposit": "0.1",
"minWithdrawal": "0.099",
"maxWithdrawal": "0.099",
"feePercentage": 1.0,
"poolCapacity": 1048576,
"currentUtilization": 847,
"status": "active"
}
]
}Last updated

