Rate Limiting
Manage request volume responsibly to maintain reliable performance across all endpoints.
Rate limiting is applied to specific API endpoints to encourage responsible usage and maintain overall system performance. Each endpoint enforces its own request limits, and exceeding these limits may result in temporary throttling or rejected requests. Clients should implement appropriate handling, such as retry logic with backoff, to manage these responses gracefully and ensure reliable operation.
HTTP Error Code
When rate limiting is applied to a specific endpoint and the limit is exceeded, calls will return 429 (Too Many Requests)
Updated about 2 hours ago
