Skip to content

PayoutMethod

Bakhtarian edited this page May 14, 2026 · 1 revision

Payout Method

A payout method is a stored instrument used to receive funds from Whop — for example a bank account or card registered for payouts. The SDK provides read-only access to payout methods.

SDK access

$client->payoutMethods // Matchable\Whop\Resource\PayoutMethodResource

Endpoints

list(array $query = []): array

HTTP GET payout-methods
Does Lists payout methods.
Parameters $query — optional filters / pagination.
Returns array

get(string $id): array

HTTP GET payout-methods/{id}
Does Retrieves a single payout method by ID.
Parameters $id — the payout method ID.
Returns array

Note: this resource is read-only — it exposes only list and get. For the account those funds settle into, see PayoutAccount.

Example

$methods = $client->payoutMethods->list();

$method = $client->payoutMethods->get('paym_...');

Reference

Official Whop documentation: https://docs.whop.com

Clone this wiki locally