---
title: "List Documents"
method: GET
path: "/agents/documents"
tags: ["Documents"]
---

# List Documents

`GET /agents/documents`

List all [knowledge base](/line/knowledge-base) documents in your organization

## Query parameters

- `starting_after` string
- `ending_before` string
- `limit` integer

## Headers

- `Cartesia-Version` '2026-03-01', date, required

## Response `200`

A paginated list of documents.

- ListDocumentsResponse
  - `data` DocumentResponse[], required — The paginated list of documents.
    - `id` string, required — The ID of the document.
    - `name` string, nullable, required — The document's display name, or `null` if unnamed.
    - `content` string, required — The full document text.
    - `created_at` string, date-time, required — When the document was uploaded.
    - `metadata` object, required — User-defined string-keyed metadata.
  - `has_more` boolean, required — Whether more results are available after this page.
  - `next_page` string, nullable — An ID that can be passed as `starting_after` or `ending_before` to get the next page.

---

[API](https://skmtc.net/cartesia/apis/cartesia-api.md) · [All operations](https://skmtc.net/cartesia/apis/cartesia-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cartesia/cartesia-api/revisions/8910812440d3/schema)
