---
title: "List payout methods"
method: GET
path: "/payout_methods"
tags: ["Payout methods"]
---

# List payout methods

`GET /payout_methods`

Returns a list of active payout methods configured for a company, ordered by most recently created.

Required permissions:
 - `payout:destination:read`

## Query parameters

- `after` string, nullable — Returns the elements in the list that come after the specified cursor.
- `before` string, nullable — Returns the elements in the list that come before the specified cursor.
- `first` integer, nullable — Returns the first _n_ elements from the list.
- `last` integer, nullable — Returns the last _n_ elements from the list.
- `company_id` string, required — The unique identifier of the company to list payout methods for.

## Response `200`

A successful response

- object — The connection type for PayoutToken.
  - `data` PayoutMethodListItem[], required — A list of nodes.
    - `account_reference` string, nullable, required — A masked identifier for the payout destination, such as the last four digits of a bank account or an email address. Null if no reference is available.
    - `company` object, nullable, required — The company associated with this payout destination. Null if not linked to a specific company.
      - `id` string, required — The unique identifier for the company.
    - `created_at` string, date-time, required — The datetime the payout token was created.
    - `currency` string, required — The three-letter ISO currency code that payouts are delivered in for this destination.
    - `destination` object, nullable, required — The payout destination configuration linked to this token. Null if not yet configured.
      - `category` 'crypto' | 'rtp' | 'next_day_bank' | 'bank_wire' | 'digital_wallet' | 'unknown', required — The category of a payout destination.
      - `country_code` string, required — The country code of the payout destination
      - `name` string, required — The name of the payer associated with the payout destination
    - `id` string, required — The unique identifier for the payout token.
    - `institution_name` string, nullable, required — The name of the bank or financial institution receiving payouts. Null if not applicable or not provided.
    - `is_default` boolean, required — Whether this is the default payout destination for the associated payout account.
    - `nickname` string, nullable, required — A user-defined label to help identify this payout destination. Not sent to the provider. Null if no nickname has been set.
  - `page_info` PageInfo, required — Information about pagination in a connection.
    - `end_cursor` string, nullable, required — When paginating forwards, the cursor to continue.
    - `has_next_page` boolean, required — When paginating forwards, are there more items?
    - `has_previous_page` boolean, required — When paginating backwards, are there more items?
    - `start_cursor` string, nullable, required — When paginating backwards, the cursor to continue.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `422` — Verification required
- `429` — Too many requests
- `500` — Internal server error

---

[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/866821546d67/schema)
