> ## Documentation Index
> Fetch the complete documentation index at: https://www.latitude.sh/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Error Objects

> Structure of error responses

## Error Objects

The API will return an Error List for a failed request, which will contain one or more Error objects.

### Error List Attributes

Each error has the following attributes:

| Field    | Description                                                      |
| -------- | ---------------------------------------------------------------- |
| `status` | The HTTP status                                                  |
| `code`   | General context about the error. See [Error Codes](#error-codes) |
| `title`  | Error title                                                      |
| `detail` | Error detail                                                     |
| `meta`   | Metadata about the error                                         |

### Error List Object

```json theme={null}
[
  {
    "status": "404",
    "code": "not_found",
    "title": "Error",
    "detail": "Specified Record Not Found"
  }
]
```
