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

# List Payouts

`GET /payouts`

Lists an account's or user's payouts, newest first.

## Query parameters

- `account_id` string
- `user_id` string
- `currency` string
- `first` integer
- `after` string
- `last` integer
- `before` string

## Response `200`

payout method nulled without the destination-read scope

- object
  - `data` object[], required
    - `amount` number, float, required — The payout amount in whole currency units.
    - `created_at` string, date-time, required — When the payout was created.
    - `currency` string, required — Payout currency.
    - `estimated_arrival` string, date-time, nullable, required — Estimated time the funds become available in the destination account.
    - `fee_amount` number, float, required — The fee charged for the payout, in the payout currency.
    - `id` string, required — Payout ID.
    - `object` 'payout', required
    - `payer_name` string, nullable, required — Name of the entity processing the payout.
    - `payout_method` object, nullable, required — The saved payout method used. Requires payout:destination:read; null without it.
      - `nickname` string, nullable, required — Saved payout method nickname.
      - `supported_payout_method` object, nullable, required — Supported payout method display details.
        - `icon_url` string, nullable, required — Supported payout method icon URL.
        - `payer_name` string, nullable, required — Supported payout method display name.
    - `payout_request_id` string, nullable, required — The ID returned by POST /payouts when this payout was requested. Match it to the settled payout in GET /payouts. Null for payouts not created by POST /payouts.
    - `speed` 'standard' | 'instant', required — Payout delivery speed.
    - `status` 'requested' | 'awaiting_payment' | 'in_transit' | 'completed' | 'failed' | 'canceled' | 'denied', required — Current payout status.
  - `page_info` object, required
    - `end_cursor` string, nullable, required
    - `has_next_page` boolean, required
    - `has_previous_page` boolean, required
    - `start_cursor` string, nullable, required

## Other responses

- `400` — Invalid Parameters
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Resource not found

---

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