Skip to main content

Set Rate Limit

API rate limit: 50 req per second

info
  • If the UID requesting this endpoint is a master account, UIDs passed to the uids parameter must be subaccounts of the master account.
  • If the UID requesting this endpoint is not a master account, the UID passed to the uids parameter must be the UID of the subaccount requesting this endpoint.
  • Only institutional users can request this endpoint.

HTTP Request

POST /v5/apilimit/set

Request Parameters

ParameterRequiredTypeComments
listtruearrayObject
> uidstruestringMultiple UIDs separated by commas
> bizTypetruestringBusiness type
> ratetrueintegerAPI rate limit per second

Response Parameters

ParameterTypeComments
listarrayObject
> uidsstringMultiple UIDs separated by commas
> bizTypestringBusiness type
> rateintegerAPI rate limit per second
> successbooleanWhether or not the request was successful
> msgstringResult message

Request Example

POST /v5/apilimit/set HTTP/1.1
Host: api.bybit.com
X-BAPI-SIGN: XXXXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1711420489915
X-BAPI-RECV-WINDOW: 5000
Content-Type: application/json

{
"list": [
{
"uids": "106293838",
"bizType": "DERIVATIVES",
"rate": 50
}
]
}

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"result": [
{
"uids": "290118",
"bizType": "SPOT",
"rate": 600,
"success": true,
"msg": "API limit updated successfully"
}
]
},
"retExtInfo": {},
"time": 1754894296913
}