c301132dbfd7
List Supported Payout Methods
Lists the payout methods an account or user is eligible to add.
Query parameters
The owning account ID (a biz_ identifier). Provide this or user_id.
The owning user ID (a user_ identifier). Provide this or account_id.
ISO 3166-1 alpha-2 country code for the bank account or wallet, such as US. Defaults to the country of supported_payout_method_id when one is given, otherwise the payout account's country.
Optional withdrawal amount in whole currency units, for example 250.00. When provided, each destination includes per-currency fee and delivery quotes.
Currency code of the amount, for example usd. Only meaningful with amount.
Narrows the list to one supported payout method (a podst_ identifier) and includes the required_fields needed to save it as a payout method.
Currency the supported payout method would deliver payouts in. Only meaningful with supported_payout_method_id; required fields vary by destination currency.
Number of supported payout methods to return from the start of the window.
Cursor to fetch the page after (from page_info.end_cursor).
Number of supported payout methods to return from the end of the window.
Cursor to fetch the page before (from page_info.start_cursor).
Response
catalog failures degrade to no destinations
Example response
{
"data": [
{
"delivery_type": "bank_deposit",
"icon_url": "https://assets-2-rough.whop.com/uploads/image/2026-01-01/ach-bank-deposit",
"id": "podst_xxxxxxxxxxxxxx",
"name": "SEPA Bank Transfer",
"object": "supported_payout_method",
"quotes": [
{
"amount": 2500,
"currency": "usd",
"destination_currency": "usd",
"exchange_rate": 1,
"instant": {
"estimated_arrival": "2026-01-01T12:00:00.000Z",
"fee": 12.5,
"total_received": 2487.5
},
"max_limit": 50000,
"min_limit": 10,
"standard": {
"estimated_arrival": "2026-01-01T12:00:00.000Z",
"fee": 2.5,
"total_received": 2497.5
}
}
],
"required_fields": [
{
"id": "attr_account_number",
"input_type": "text",
"label": "Account Number",
"object": "required_field",
"options": [
"savings"
],
"placeholder": "8825310472",
"required": true,
"sensitive": true,
"type": "bank_account_number",
"validation": "^[0-9]{4,17}$"
}
],
"supports_standard_delivery": true
}
],
"page_info": {
"end_cursor": "MQ",
"has_next_page": true,
"start_cursor": "MQ"
}
}