Skip to main content
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

{
  "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

HeaderDescription
Retry-AfterSeconds 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.