Rate Limiting
All RMZ APIs enforce rate limits to ensure fair usage and platform stability. When you exceed a limit, you receive a429 Too Many Requests response.
Limits by API
Merchant API
| Scope | Limit |
|---|---|
| All endpoints | 60 requests per minute per token |
Storefront API
| Scope | Limit |
|---|---|
| General API calls | 60 requests per minute |
Authentication start (POST /auth/start) | 50 sessions per day per IP |
| Phone authentication | 10 attempts per day per phone number |
OTP verification (POST /auth/verify) | 5 attempts per minute per IP |
OTP resend (POST /auth/resend) | 3 resends per 10 minutes |
License Verification API
| Scope | Limit |
|---|---|
| All endpoints | 60 requests per minute per IP |
Handling Rate Limits
When rate-limited, the API returns:429
Best Practices
- Implement exponential backoff — wait 1s, then 2s, then 4s before retrying
- Cache responses — avoid re-fetching data that has not changed
- Batch where possible — use pagination instead of fetching one item at a time
- Monitor your usage — track 429 responses in your logs

