Error Codes
Code
Title
Description
Query-Level Errors
{
"query_id": "0",
"error": "Invalid address"
}{
"query_id": "0",
"error": "Not enough fields provided"
}Authentication Errors
Last updated
The API uses standard HTTP status codes to communicate success or failure.
200
OK
The request was successful. Note that individual queries may still contain an error field (see below).
400
Bad Request
The request body is malformed or missing required structure.
401
Unauthorized
Your API key is invalid. Verify you are using the correct apikey header.
When the API cannot match a query, the response will have HTTP status 200 but the individual result will contain an error field instead of a placekey:
{
"query_id": "0",
"error": "Invalid address"
}{
"query_id": "0",
"error": "Not enough fields provided"
}A 401 response returns a different structure:
Last updated
{
"message": "Unauthorized",
"request_id": "451ce12ff30aec58e644321a54ef4c63"
}