Get All Rate Limits
API rate limit: 50 req per second
info
- Query for all your UID-level rate limits, including all master accounts and subaccounts.
HTTP Request
GET /v5/apilimit/query-all
Request Parameters
Parameter | Required | Type | Comments |
---|---|---|---|
limit | false | string | Limit for data size per page. [1 , 1000 ]. Default: 1000 |
cursor | false | string | Cursor. Use the nextPageCursor token from the response to retrieve the next page of the result set |
uids | false | string | Multiple UIDs across different master accounts, separated by commas. Returns all master accounts and subaccounts by default |
Response Parameters
Parameter | Type | Comments |
---|---|---|
nextPageCursor | string | Refer to the cursor request parameter |
list | array | Object |
> uids | string | Multiple UIDs separated by commas |
> bizType | string | Business type |
> rate | integer | API Rate limit per second |
Request Example
GET /v5/apilimit/query-all HTTP/1.1
Host: api.bybit.com
X-BAPI-SIGN: XXXXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1728460942776
X-BAPI-RECV-WINDOW: 5000
Content-Type: application/json
Content-Length: 2
Response Example
{
"retCode": 0,
"retMsg": "success",
"result": {
"list": [
{
"uids": "104270393,1674166,1190923,101446030",
"bizType": "SPOT",
"rate": 223
},
{
"uids": "104074050,104394193,104126066",
"bizType": "OPTIONS",
"rate": 223
},
{
"uids": "104154966,103803484,103995540,100445068",
"bizType": "DERIVATIVES",
"rate": 298
}
],
"nextPageCursor": ""
},
"retExtInfo": {},
"time": 1758857701702
}