HTTP Status Codes
The API uses standard HTTP status codes. The following are commonly used status codes and their meanings:Error Response Format
When an error occurs, the API returns a JSON response in the following format:Response Fields
Common Errors
Authentication Error (401)
Permission Error (403)
Validation Error (422)
Error Handling Best Practices
- Properly handle all HTTP status codes
- Implement retry logic especially for 429 (rate limit) errors
- Log error messages to help diagnose problems
- Display user-friendly error messages to users
- Do not include sensitive information in error messages

