Set RateLimit Quota
Set RateLimit Quota
Descriptionâ
- Set rate limit quotas for sub-accounts. This endpoint allows master accounts to allocate rate limit quotas for spot and futures trading at the sub-account level.
- Supports single or batch quota allocation for multiple sub-accounts by business line.
- The single account rate limit Quota must not exceed the single account rate limit Cap.
- The sum of all sub-account rate limit Quotas (i.e., the Master-Sub Quota) must not exceed the Master-Sub total rate limit Cap.
- If adjusting a sub-account's Quota causes the total Master-Sub Quota to exceed the Master-Sub Cap, the API call will be rejected.
Note: This endpoint is only available to MM (Market Maker) and PRO institutional users.
HTTP Requestâ
- POST /api/v3/user/set-rate-limit-quota
- Rate limit: 5/sec/UID
- Permission: UTA mgt. (read & write)
Request
curl -X POST "https://api.bitget.com/api/v3/user/set-rate-limit-quota" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json" \
-d '{"category":"futures","uids":["123456","123457"],"quota":"100"}'
Request Parametersâ
| Parameter | Type | Required | Description |
|---|---|---|---|
| category | String | Yes | Product typespot Spot futures Futures |
| uids | List<String> | Yes | Sub-account UIDs Up to 50 UIDs per request |
| quota | String | Yes | Rate limit quota Must not exceed the single account rate limit Cap |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1753987234567,
"data": {}
}
Response Parametersâ
This endpoint has no response data parameters. The result is indicated by the code and msg fields.