Skip to content

PayoutAccount

Bakhtarian edited this page May 14, 2026 · 1 revision

Payout Account

A payout account represents the destination account that receives funds paid out by Whop — for example a connected bank or Stripe account belonging to a company. The SDK provides read-only access to payout accounts.

SDK access

$client->payoutAccounts // Matchable\Whop\Resource\PayoutAccountResource

Endpoints

get(string $id): array

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

Note: this resource is read-only — it exposes only get. For the specific instrument funds are sent to, see PayoutMethod.

Example

$account = $client->payoutAccounts->get('payacct_...');

Reference

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

Clone this wiki locally