Skip to main content

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​

ParameterTypeRequiredDescription
categoryStringYesProduct type
spot Spot
futures Futures
uidStringNoAccount UID
Used to query a single account's rate limit quota; omit to list all sub-accounts
cursorStringNoCursor
Used for pagination in subsequent queries
limitStringNoLimit 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​

ParameterTypeDescription
categoryStringProduct type
spot Spot
futures Futures
quotaListArraySub-account rate limit quota list
>uidStringAccount UID
>quotaStringThe actual configured single account rate limit value
masterSubQuotaStringThe actual configured master-sub account rate limit value
masterSubCapStringMaster-sub account rate limit Cap
cursorStringCursor
Used for pagination in subsequent queries

How was your Reading Experience with us?

★
★
★
★
â˜