# 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)

<div className="api-aligning">

```bash title="Request Example"
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 type<br/>`spot` Spot <br/>`futures` Futures                                              |
| uid       | String | No       | Account UID<br/>Used to query a single account's rate limit quota; omit to list all sub-accounts |
| cursor    | String | No       | Cursor<br/>Used for pagination in subsequent queries                                             |
| limit     | String | No       | Limit per page<br/>Default: `100`. Maximum: `100`                                                |

</div>

<div className="api-br-10"></div>

<div className="api-aligning">

```json title="Response Example"
{
  "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 type<br/>`spot` Spot <br/>`futures` Futures                              |
| quotaList      | Array  | Sub-account rate limit quota list                                                |
| &gt;uid        | String | Account UID                                                                      |
| &gt;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<br/>Used for pagination in subsequent queries                             |

</div>
