> ## Documentation Index
> Fetch the complete documentation index at: https://developers.trycents.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Errors

Error messsages from the Dispatch API

For any errors, API will return non-200 HTTP status codes and a JSON body with errors. The shape of the JSON blob is below.

#### Error Response

<ResponseField name="error" type="string">
  A human-readable error message
</ResponseField>

<ResponseExample>
  ```json 4XX theme={null}
  {
    "error": "Email is invalid",
    ...
  }
  ```
</ResponseExample>
