Get RateLimit Quota
Get RateLimit Quota
Descriptionâ
Query the rate limit quota configuration for accounts. Supports querying the quota allocation for a single account or listing all sub-account quotas under a master account.
Note: This endpoint is only available to MM (Market Maker) and PRO institutional users.
HTTP Requestâ
- GET /api/v3/user/rate-limit-quota
- Rate limit: 10/sec/UID
- Permission: UTA mgt. (read)
Request
curl "https://api.bitget.com/api/v3/user/rate-limit-quota?category=futures" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
Request Parametersâ
| Parameter | Type | Required | Description |
|---|---|---|---|
| category | String | Yes | Product typespot Spot futures Futures |
| uid | String | No | Account UID Used to query a single account's rate limit quota; omit to list all sub-accounts |
| cursor | String | No | Cursor Used for pagination in subsequent queries |
| limit | String | No | Limit per page Default: 100. Maximum: 100 |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1753987234567,
"data": {
"category": "futures",
"quotaList": [
{
"uid": "123456",
"quota": "100"
}
],
"masterSubQuota": "10000",
"masterSubCap": "80000",
"cursor": "1"
}
}
Response Parametersâ
| Parameter | Type | Description |
|---|---|---|
| category | String | Product typespot Spot futures Futures |
| quotaList | Array | Sub-account rate limit quota list |
| >uid | String | Account UID |
| >quota | String | The actual configured single account rate limit value |
| masterSubQuota | String | The actual configured master-sub account rate limit value |
| masterSubCap | String | Master-sub account rate limit Cap |
| cursor | String | Cursor Used for pagination in subsequent queries |