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

# Get Document

> Retrieve a specific document by its ID.

### Path Parameters

<ParamField path="id" type="string" required>
  The unique ID of the document.
</ParamField>

### Response

<ResponseField name="document" type="object">
  The document metadata and content.
</ResponseField>

```json Example Response theme={null}
{
  "id": "doc-123",
  "title": "Welcome",
  "text": "This is the content of the document...",
  "status": "indexed"
}
```
