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

# List documents

`GET /api/documents`

Returns a paginated list of documents for the organization.

## Query parameters

- `limit` number
- `nextId` string, uuid

## Headers

- `on-behalf-of` string

## Response `200`

Documents returned successfully.

- UploadedDocumentPaginatedResponse
  - `documents` UploadedDocumentResponse[], required — List of documents in the current page.
    - `createdAt` string, date-time, required — Timestamp when the document record was created.
    - `filename` string, required — Human-readable filename of the document.
    - `id` string, uuid, required — Unique identifier for the document.
    - `status` 'PENDING_UPLOAD' | 'UPLOADED', required — Current status of the document. `PENDING_UPLOAD` means the file has not yet been received; `UPLOADED` means the file is ready.
    - `updatedAt` string, date-time, required — Timestamp when the document was last updated.
  - `nextId` string, uuid — Cursor for the next page of results. Pass this value as the nextId query parameter to retrieve the next page. Absent when there are no more results.
  - `totalDocuments` number, required — Total number of documents matching the query.

## Other responses

- `401` — Unauthorized
- `403` — SignedAgreementRequiredException

---

[API](https://skmtc.net/muralpay/apis/mural-api.md) · [All operations](https://skmtc.net/muralpay/apis/mural-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/muralpay/mural-api/versions/437d277f5948/schema)
