Skip to content
Bakhtarian edited this page May 14, 2026 · 1 revision

Topup

A topup adds funds to a Whop ledger account or balance — for example, crediting a company's wallet so it can cover payouts, transfers, or other outgoing transactions.

SDK access

$client->topups // Matchable\Whop\Resource\TopupResource

Endpoints

create(array $data): array

HTTP POST topups
Does Creates a topup, adding funds to a ledger account / balance.
Parameters $data — topup attributes (e.g. target ledger account, amount, currency, funding source).
Returns array

Example

$topup = $client->topups->create([
    'amount' => 10000,
    'currency' => 'usd',
]);

Reference

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

Clone this wiki locally