API
Rate Limiting
Game Framework implements rate limiting to ensure fair usage.
Rate Limits
| Plan | Hourly Limit | Daily Limit |
|---|---|---|
| Free | 100 | 1,000 |
| Pro | 1,000 | 10,000 |
| Enterprise | 10,000 | 100,000 |
Response Headers
HTTP/1.1 200 OK
X-RateLimit-Limit: 1000
X-RateLimit-Remaining: 999
X-RateLimit-Reset: 1704988800When Limited
Response (429):
{
"error": {
"code": "rate_limit_exceeded",
"message": "Rate limit exceeded. Try again in 3600 seconds.",
"retry_after": 3600
}
}Best Practices
- Cache responses - Reduce API calls
- Batch requests - Combine when possible
- Use webhooks - Instead of polling
- Monitor limits - Check headers
Exemptions
Enterprise plans can request custom limits.