---
title: "List Approvals"
method: GET
path: "/api/approvals"
tags: ["approvals"]
---

# List Approvals

`GET /api/approvals`

## Query parameters

- `status` string, nullable
- `approval_type` string, nullable
- `page` integer
- `limit` integer

## Response `200`

Successful Response

- PaginatedResponseApprovalOut
  - `data` ApprovalOut[], required
    - `id` string, uuid, required
    - `approval_type` string, required
    - `status` string, required
    - `record_id` string, uuid, nullable, required
    - `payload` object, nullable, required
    - `edited_payload` object, nullable, required
    - `telegram_message_id` integer, nullable, required
    - `telegram_chat_id` integer, nullable, required
    - `decided_by` string, uuid, nullable, required
    - `decided_at` string, date-time, nullable, required
    - `created_at` string, date-time, required
  - `total` integer, required — Total records matching the query (before pagination)
  - `page` integer, required — Current page number (1-indexed)
  - `limit` integer, required — Records per page (default 50, max 200)
  - `has_more` boolean, required — True if (page * limit) < total

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/rethoric/apis/rethoric-os.md) · [All operations](https://skmtc.dev/rethoric/apis/rethoric-os/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/rethoric/rethoric-os/revisions/76b6d39426f6/schema)
