Error Handling
Learn how to properly handle errors when integrating with the Bila API.
Error Response Format
All API errors follow a consistent format:
HTTP Status Codes
The Bila API uses conventional HTTP status codes to indicate the success or failure of an API request:
Status Code | Description |
---|---|
200 - 299 | Success - The request was successfully received, understood, and accepted |
400 | Bad Request - The request was invalid or cannot be served |
401 | Unauthorized - Authentication is required and has failed or not been provided |
403 | Forbidden - The request is understood but has been refused or access is not allowed |
404 | Not Found - The requested resource could not be found |
422 | Unprocessable Entity - The request was well-formed but was unable to be followed due to semantic errors |
429 | Too Many Requests - The user has sent too many requests in a given amount of time |
500 - 599 | Server Error - Something went wrong on our end |
Common Error Codes
- invalid_request: The request is missing required parameters or contains invalid parameters.
- authentication_failed: The API key provided is invalid or has been revoked.
- insufficient_funds: The wallet or account does not have sufficient funds to complete the transaction.
- resource_not_found: The requested resource does not exist.
- rate_limit_exceeded: The API rate limit has been exceeded.
Handling Errors
Here’s an example of how to handle errors in your code:
Validation Errors
For validation errors (typically 400 Bad Request), the API will return detailed information about what went wrong:
Best Practices
-
Always check for errors: Never assume that an API request will succeed.
-
Log errors: Log errors for debugging and monitoring purposes.
-
Provide user-friendly messages: Translate API error messages into user-friendly messages.
-
Implement retry logic: For transient errors (like network issues or rate limits), implement retry logic with exponential backoff.
-
Handle specific error codes: Implement specific handling for different error codes.
Idempotency
To prevent duplicate transactions, the Bila API supports idempotency. Include an Idempotency-Key
header with a unique value for each request:
If you retry a request with the same idempotency key, the API will return the result of the original request instead of processing the request again.