---
title: "List Payments"
method: GET
path: "/api/v1/admin/payments/"
tags: ["admin-payments"]
---

# List Payments

`GET /api/v1/admin/payments/`

List all payments with optional status, method, and project filtering.

Requires ``payments:view`` permission.

## Query parameters

- `status` string, nullable — Filter by payment status
- `method` string, nullable — Filter by payment method
- `project_id` string, nullable — Filter by project ID
- `offset` integer
- `limit` integer

## Response `200`

Successful Response

- PaginatedResponseAdminPaymentListItem
  - `items` AdminPaymentListItem[], required
    - `id` string, uuid, required
    - `project_id` string, uuid, required
    - `method` string, required
    - `status` string, required
    - `amount` string, required
    - `total_with_tax` string, nullable
    - `currency` string, required
    - `po_number` string, nullable
    - `paid_at` string, date-time, nullable
    - `created_at` string, date-time, required
    - `payment_terms_net_days` integer, nullable
    - `user` UserSummary, required — Minimal user info for denormalized list views.
      - `id` string, uuid, required
      - `email` string, required
      - `first_name` string, required
      - `last_name` string, required
      - `company` string, nullable
    - `project_name` string, required
    - `submitted_by_admin_id` string, uuid, nullable
    - `submitted_by_label` string, nullable
  - `total` integer, required
  - `offset` integer, required
  - `limit` integer, required
  - `has_more` boolean, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/prototyping/apis/prototyping-io-api.md) · [All operations](https://skmtc.dev/prototyping/apis/prototyping-io-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/prototyping/prototyping-io-api/revisions/f4a0079fbb57/schema)
