Skip to content

LedgerAccount

Bakhtarian edited this page May 14, 2026 · 1 revision

Ledger Account

A ledger account represents a balance-holding account in Whop's payments ledger — used to track funds, earnings, and available balances for a company or user. The SDK provides read-only access to ledger accounts.

SDK access

$client->ledgerAccounts // Matchable\Whop\Resource\LedgerAccountResource

Endpoints

get(string $id): array

HTTP GET ledger-accounts/{id}
Does Retrieves a single ledger account by ID, including its balances.
Parameters $id — the ledger account ID.
Returns array

Note: this resource is read-only — it exposes only get. Ledger accounts are created and managed by Whop, not via the API.

Example

$account = $client->ledgerAccounts->get('ldgr_...');

Reference

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

Clone this wiki locally