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

# 429 — Rate Limited

> Too many requests have been sent in a given time period.

```
Status: 429 Too Many Requests
Code:   RATE_LIMITED
Type:   https://docs.bedrock.cv/errors/rate-limit
```

## Description

You have exceeded the allowed number of requests in a given time period. The response includes a `Retry-After` header indicating how many seconds to wait before retrying.

## Example

```json theme={null}
{
  "type": "https://docs.bedrock.cv/errors/rate-limit",
  "title": "Too many requests",
  "status": 429,
  "detail": "You have exceeded the rate limit.",
  "code": "RATE_LIMITED",
  "request_id": "req_01JABCD123"
}
```

## Headers

| Header        | Description                 |
| ------------- | --------------------------- |
| `Retry-After` | Seconds until you can retry |

## Resolution

Wait for the duration specified in the `Retry-After` header before retrying. Implement exponential backoff for sustained high-throughput workloads.
