Standard merchants can make up to 100 requests per minute.
What happens when you exceed the limit
If you exceed your request limit, Pasteaza returns a429 Too Many Requests response.
The response may include a Retry-After header that tells you when to try again.
Recommended behavior
Read the Retry-After header
Wait for the time indicated in the
Retry-After header when it is present.Retry with backoff
Use exponential backoff for repeated retries instead of sending requests in a tight loop.
Example response
Best practices
- Cache responses that do not change often.
- Use webhooks instead of polling where possible.
- Back off progressively after each retry.
- Log rate-limit errors so you can monitor traffic patterns.
- Handle
Retry-Afterheaders in your HTTP client.