> ## 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.

# List Documents

> Retrieve a list of ingested documents in the corpus.

### Query Parameters

<ParamField query="page" type="number">
  The page number to retrieve. Defaults to 1.
</ParamField>

<ParamField query="limit" type="number">
  The number of items per page. Defaults to 20, Max 100.
</ParamField>

### Response

<ResponseField name="documents" type="array">
  Array of document metadata objects.
</ResponseField>

<ResponseField name="total" type="number">
  Total number of documents.
</ResponseField>

```json Example Response theme={null}
{
  "documents": [
    {
      "id": "doc-123",
      "title": "Welcome",
      "status": "indexed"
    }
  ],
  "total": 1
}
```
