---
title: "List payouts"
method: GET
path: "/seller/payouts"
tags: ["seller-finance"]
---

# List payouts

`GET /seller/payouts`

List seller payouts with cursor pagination.

Use this endpoint for payout history screens and finance reporting views.

Query behavior:
- `cursor` continues listing after a prior payout ID.
- `size` controls page size (defaults to 20 when omitted).

Response behavior:
- Returns provider payout records scoped to the authenticated seller.
- Use the returned pagination metadata to request additional pages.

## Query parameters

- `cursor` string — Payout ID to continue listing from
- `size` string — Number of payouts per page, defaults to 20

## Response `200`

Paginated payouts

- PayoutList — Paginated payouts using a cursor for more results
  - `cursor` string — Cursor for the next page of results
  - `payouts` Payout[], required — Payouts returned for this page
    - `id` string, required — Unique identifier for the payout
    - `amount` number, required — Amount of the payout in the smallest currency unit
    - `currency` string, required — Currency for the payout
    - `arrivalDate` string, required — Estimated date when the payout will arrive
    - `status` string, required — Current status of the payout

## Other responses

- `404` — Seller not found

---

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