Skip to main content

Response Format

All errors return this structure:

HTTP Status Codes

Common Issues

Rate Limiting

Exceeding the rate limit returns a 429 response. Implement exponential backoff to handle it gracefully.
Best practices:
  • Start with 5 requests/minute max
  • Implement exponential backoff: 2s → 4s → 8s
  • Add random jitter to prevent thundering herd
  • Contact support for enterprise rate limits