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

# List Documents

> List documents that have extraction records

## Endpoint

```
GET https://api.documind.cloud/api/v1/documents
```

## Response

The backend builds this list from extraction records for the authenticated user. Newly uploaded documents may not appear until an extraction exists for them.

```json theme={null}
[
  {
    "document_id": "doc-id-1",
    "filename": "invoice.pdf"
  },
  {
    "document_id": "doc-id-2",
    "filename": "receipt.jpg"
  }
]
```

## Example

```python theme={null}
response = requests.get(
    "https://api.documind.cloud/api/v1/documents",
    headers={"X-API-Key": API_KEY}
)

documents = response.json()
```
