Payments
List Payment Fees
Returns the fee breakdown of one payment — Whop's fee, processing, affiliate and other lines — each in the currency it was collected in and converted to the payment's settlement currency. The list is complete in one page.
get/payments/{id}/fees
Response
fees listed
Example response
{
"data": [
{
"amount": {
"amount": "-2.50",
"currency": "usd",
"decimals": 2,
"display_decimals": 2
},
"collected_at": "2026-01-01T12:00:00.000Z",
"label": "Processing fee",
"origin": "whop_processing_fee",
"settlement_amount": {
"amount": "-2.50",
"currency": "usd",
"decimals": 2,
"display_decimals": 2
},
"type": "whop_fee"
}
]
}