> ## Documentation Index
> Fetch the complete documentation index at: https://docs.firebolt.io/llms.txt
> Use this file to discover all available pages before exploring further.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.firebolt.io/feedback

```json
{
  "path": "/reference-sql/information-schema/quotas",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

> Use this reference to learn about account-level quotas exposed via the account_db information schema.

# Quotas

You can use the `account_db.information_schema.quotas` view to return account-level quota limits and usage. The view is available in the special `account_db` database and contains one row per quota.

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
SELECT
  *
FROM
  account_db.information_schema.quotas;
```

## Columns in account\_db.information\_schema.quotas

Each row has the following columns with information about each quota.

| Column Name | Data Type | Description                                     |
| :---------- | :-------- | :---------------------------------------------- |
| name        | TEXT      | The name of the quota.                          |
| units       | TEXT      | The measurement units for the quota values.     |
| limit       | BIGINT    | The configured maximum allowed for the quota.   |
| usage       | BIGINT    | The current usage that counts toward the quota. |

### Sample result

```text theme={"theme":{"light":"github-light","dark":"github-dark"}}
name,units,limit,usage
'LLM_TOKEN_BUDGET',tokens,10000,3500
```
