Skip to main content

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

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:
FieldDescription
statusThe HTTP status
codeGeneral context about the error. See Error Codes
titleError title
detailError detail
metaMetadata about the error

Error List Object

[
  {
    "status": "404",
    "code": "not_found",
    "title": "Error",
    "detail": "Specified Record Not Found"
  }
]