Overview
The API implements rate limiting to ensure fair usage and protect against abuse.Rate Limits
| Operation Type | Rate Limit | Scope |
|---|---|---|
| Read (GET requests) | 100 requests/min | Per API Key |
| Write (POST/DELETE requests) | 20 requests/min | Per API Key |
| Entity Creation | 10 entities/hour | Per Workspace |
Rate Limit Response
When you exceed a rate limit, you’ll receive a429 Too Many Requests response:
Retry-After header indicates how many seconds to wait before retrying.
Handling Rate Limits
Best Practices
- Cache responses to reduce API calls
- Batch operations when possible
- Implement retry logic with exponential backoff

