Game Framework
API

Rate Limiting

Game Framework implements rate limiting to ensure fair usage.

Rate Limits

PlanHourly LimitDaily Limit
Free1001,000
Pro1,00010,000
Enterprise10,000100,000

Response Headers

HTTP/1.1 200 OK
X-RateLimit-Limit: 1000
X-RateLimit-Remaining: 999
X-RateLimit-Reset: 1704988800

When Limited

Response (429):

{
  "error": {
    "code": "rate_limit_exceeded",
    "message": "Rate limit exceeded. Try again in 3600 seconds.",
    "retry_after": 3600
  }
}

Best Practices

  1. Cache responses - Reduce API calls
  2. Batch requests - Combine when possible
  3. Use webhooks - Instead of polling
  4. Monitor limits - Check headers

Exemptions

Enterprise plans can request custom limits.