# Rate Limiting To ensure fair usage and maintain system performance, the following default rate limits are applied to API requests: | HTTP Method | Requests per Minute | | --- | --- | | GET | 150 | | POST | 50 | | PUT | 50 | | DELETE | 50 | ## Notes - These limits are default values and can be customized upon request. - Limits are applied per partner account. - If you exceed the limit, the API returns HTTP 429 (Too Many Requests). - Implement retry logic with exponential backoff to handle rate limiting gracefully.