Skip to main content

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

ParameterRequiredTypeComments
limitfalsestringLimit for data size per page. [1, 1000]. Default: 1000
cursorfalsestringCursor. Use the nextPageCursor token from the response to retrieve the next page of the result set
uidsfalsestringMultiple UIDs across different master accounts, separated by commas. Returns all master accounts and subaccounts by default

Response Parameters

ParameterTypeComments
nextPageCursorstringRefer to the cursor request parameter
listarrayObject
> uidsstringMultiple UIDs separated by commas
> bizTypestringBusiness type
> rateintegerAPI 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
}