Overview
To ensure fair usage and service quality, the API implements rate limits based on your API key.Current Limit: 20 POST requests per minute per API key
Rate Limit Rules
Error Response
When you exceed 20 POST requests per minute:- Wait for the time specified in
retryAfter(seconds) - Reduce POST request frequency
Best Practices
Use Webhooks
Use webhooks instead of polling for status updates
Monitor Headers
Check X-RateLimit-Remaining to avoid hitting limits
Queue Requests
Spread POST requests over time
Use GET for Status
GET requests are not limited - use them for checking status

