# GET /voice-agent-kbs/:kb_id/documents

**Resource:** [Agent Knowledge Bases](./voice-agent-kbs.md)  
**Scopes:** `voice-kbs:read`  
**Write operation:** no

List all document records tracked for a knowledge base. Each row has a retell_doc_id, source_type (help_center_article or manual), optional source_id (article UUID), title, and content_hash.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `kb_id` | path | uuid | yes | Knowledge base UUID |

## Response example

```json
{"documents": [{"id": "doc-uuid", "title": "Pricing", "retell_doc_id": "src_xyz", "source_type": "manual", "content_hash": "abc123"}]}
```

---
Base URL: `https://api.trustpager.com/functions/v1/api/v1` — Auth: `Authorization: Bearer YOUR_API_KEY`