Tachyontachyon

Errors

Error response shape and the full list of error codes.

Every error response follows the same shape:

{
  "error": {
    "code": "collection_not_found",
    "message": "collection `products` not found"
  }
}

Codes

CodeHTTP statusMeaning
collection_exists409A collection with that name already exists
collection_not_found404No collection with that name
document_not_found404No document with that id
invalid_schema400Malformed or invalid collection schema
invalid_document400Document failed validation against the schema
invalid_query400Malformed filter/sort/facet expression, or a field used that wasn't declared for it
unauthorized401Missing API key on a route that requires one
forbidden403Search key used on a write route, or a key that doesn't match
corrupt_data500On-disk data failed integrity checks
io_error500Underlying filesystem I/O error
invalid_json400Request body was not valid JSON
internal_error500Unclassified server error

On this page