Rate limits

The API is rate limited to protect platform stability. When you exceed the limit you receive 429 Too Many Requests:

json
{ "error": "Too many requests, please try again later." }

The limit

ScopeLimitWindow
Per client100 requests15 minutes

Responses include standard RateLimit headers (draft-7), so you can read your remaining quota and reset time programmatically rather than guessing:

code
RateLimit-Limit: 100
RateLimit-Remaining: 84
RateLimit-Reset: 540

Handling 429

  • Back off and retry. Wait until the window resets (use the RateLimit-Reset seconds value), then retry.
  • Use exponential backoff with jitter if you don't read the headers.
  • Reuse the same requestId when retrying a verification so the retry is idempotent and never double-charges.
  • Batch and pace bulk work instead of bursting.

Limits may differ between staging and production and can be adjusted for your account — contact Myaza if your production volume needs a higher ceiling.