Skip to main content
All API errors follow a consistent format to help you handle them gracefully.

Error Response Format

Error Codes Reference

Authentication Errors

Request Errors

Server Errors

Handling Common Errors

Solution: Check that your API key is correct and hasn’t expired.
Solution: Reduce the limit parameter. Maximum varies by endpoint (typically 100 for posts, 500 for comments).
Solution: The circuit breaker is open due to upstream issues. Retry after a few seconds with exponential backoff.
Solution: The external platform returned an error. Check that the resource exists and the URL/ID is correct.

Error Handling Examples

Best Practices

Always check success

Don’t assume the request succeeded

Log error codes

Track which errors occur most frequently

Implement retry logic

For transient errors like SERVICE_UNAVAILABLE

Use exponential backoff

Start with 1s, then 2s, 4s, etc.