Tupel uses standard HTTP status codes along with detailed error messages to help you identify and resolve issues with your API requests. This page provides a comprehensive guide to understanding and handling errors.
HTTP Status Codes
Code | Description |
---|---|
200 |
OK - Your request was successful. |
401 |
Unauthorized - No valid API key or Organization ID provided. |
403 |
Forbidden - Your API key doesn't have permission to perform the requested action. |
404 |
Not Found - The requested resource doesn't exist. |
422 |
Unprocessable Entity - Request validation failed. The request contains invalid parameters. |
429 |
Too Many Requests - You've exceeded the rate limit (60 requests per minute). |
5xx |
Server Error - Something went wrong on Tupel's end (extremely rare). Our team is automatically notified of these errors. |
Best Practices for Error Handling
- Check HTTP status codes first to understand the general category of the error.
- Examine the error message for specific details about what went wrong.
- Implement retry logic with backoff for rate limiting (429) and server errors (5xx).
- Log detailed error information in your application for easier debugging.
- Handle validation errors (422) by fixing the request parameters rather than implementing retries.
Support
If you're experiencing persistent issues or have questions about specific error messages, please contact support@tupel.com.