All error codes

rate_limited

HTTP 429 Too many requests

What happened

You have exceeded the per-token allowance for the current minute: 60 reads or 20 writes. The count is per token, not per project.

What to do

Wait the number of seconds given in the Retry-After header, then send the same request again. If you hit this steadily, spread the calls out or split the work across several tokens.

Retrying

The request itself is fine. Repeat it later; after a 5xx use a new idempotency key and read the resource first.

How it arrives

{
    "type": "https://docs.fiberax.com/errors/rate_limited",
    "title": "Too many requests",
    "status": 429,
    "code": "rate_limited",
    "request_id": "a277dcd1ca652c65"
}

Branch your code on code, never on the wording of title.