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

# Rate limiting

> Understand Mirage API rate limits per organization for video captions and video generation, plus how to handle HTTP 429 Too Many Requests errors.

To keep the system fast and fair for everyone, Mirage enforces simple rate limits on API requests.

## Limits

| Feature          |      Limit (RPM) |
| ---------------- | ---------------: |
| Video Captions   | **100 requests** |
| Video Generation |   **2 requests** |

> **Note:** These limits apply per organization. If you need higher throughput, talk to your account manager to raise your limits.

***

## What happens when you exceed the limit?

When the limit is exceeded, the API returns **HTTP 429 Too Many Requests**.

**Example 429 error response**

```json theme={"system"}
{
  "error": {
    "type": "rate_limit_exceeded",
    "message": "Rate limit exceeded."
  }
}
```
