# Set RateLimit Quota

### Description

1. 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.
2. Supports single or batch quota allocation for multiple sub-accounts by business line.
3. The single account rate limit Quota must not exceed the single account rate limit Cap.
4. 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.
5. 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)

<div className="api-aligning">

```bash title="Request Example"
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 type<br/>`spot` Spot <br/>`futures` Futures                    |
| uids      | List&lt;String&gt; | Yes      | Sub-account UIDs<br/>Up to 50 UIDs per request                         |
| quota     | String             | Yes      | Rate limit quota<br/>Must not exceed the single account rate limit Cap |

</div>

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

<div className="api-aligning">

```json title="Response Example"
{
  "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.

</div>
