Skip to content

RATE_LIMITED

HTTP 429 — Too many requests

This key made more calls in the current minute than it is allowed. Retry-After says how many seconds until the window resets.

What to do

Wait for Retry-After, then continue. Read X-RateLimit-Remaining on every response to pace a batch.

Can I retry?

Yes. Send the identical request again, with the same Idempotency-Key if it carried one. Nothing was taken.

The body you received

json
{
  "error": {
    "code": "RATE_LIMITED",
    "doc": "https://docs.pamopay.co/errors/RATE_LIMITED",
    "request_id": "req_5f3a9c2b1d4e6f7a8b9c0d1e"
  }
}

Quote request_id when you write to us; it finds the call without anybody grepping by timestamp.

All error codes

Every code, scope and route on this site is rendered from the API's own source.