Error Handling
Common Status Codes
Code
Description
Error Response Format
{
"error": "Error message describing the issue"
}{
"status": 200,
"items": [...],
"errors": [
{
"identifier": "invalid address",
"error": "Address not found",
"error_type": "NotFoundError",
"index": 1
}
],
"metadata": {
"total_requested": 3,
"successful": 2,
"failed": 1
}
}Last updated