Skip to content

FeeMarkup

Bakhtarian edited this page May 14, 2026 · 1 revision

Fee Markup

A fee markup is an additional fee a platform or app developer layers on top of Whop's standard transaction fees, letting them earn revenue on payments processed through their integration. The SDK supports creating, listing, and deleting fee markups.

SDK access

$client->feeMarkups // Matchable\Whop\Resource\FeeMarkupResource

Endpoints

create(array $data): array

HTTP POST fee-markups
Does Creates a new fee markup.
Parameters $data — fee markup attributes (e.g. percentage, target).
Returns array

list(array $query = []): array

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

delete(string $id): array

HTTP DELETE fee-markups/{id}
Does Deletes a fee markup.
Parameters $id — the fee markup ID.
Returns array

Note: this resource exposes no get or update — fee markups are created, listed, and deleted only.

Example

$markup = $client->feeMarkups->create(['percentage' => 2.5]);

Reference

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

Clone this wiki locally