Error Handling
Learn how to properly handle errors when working with the Blockline API.Error Response Format
All errors follow a consistent format:Common Error Codes
401 Unauthorized
Invalid or missing API key403 Forbidden
Invalid subscription status (expired, not active, no trial)400 Bad Request
Validation errors (invalid signature format, parameters out of range, etc.)404 Not Found
Transaction not found in database429 Too Many Requests
Rate limit exceeded (seeretry_after_seconds)
503 Service Unavailable
Database connection issues (ClickHouse/Redis unavailable)Retry Strategies
Implement exponential backoff with jitter for transient errors.Detailed error handling examples coming soon! Check back for comprehensive guides.