Understanding API Rate Limits
The Checklick API has a rate limit of 100 requests per minute per API key to ensure system stability. Here's how to manage it: 1. Monitor your request frequency to stay within limits. 2. If you receive a 429 Too Many Requests error, wait 60 seconds before retrying. 3. Use batch endpoints (e.g., POST /v2/evaluations/batch) to reduce request count. Example: curl -X POST https://api.checklick.com/v2/evaluations/batch -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/vnd.api+json" -H "Organization-Id: YOUR_ORG_ID" -d '{"data": [{"type": "evaluations", "attributes": {...}}, {...}]}'. Quick tips: * Check response headers for X-Rate-Limit-Remaining to track usage. * Contact support@checklick.com for higher limits if needed. * Optimize queries by fetching only necessary data.