v6

OpenAPI 3.1.0raw.githubusercontent.com2026-08-0161197504.7 KB
billing

Retrieve a fee charge

Retrieve a fee charge by ID.

get/fee-charges/{fee_charge_id}

Path parameters

fee_charge_idstring required

Response

OK

amount_feestring required

Fee amount before tax.

amount_taxstring required

Tax amount charged.

amount_totalstring required

Total fee and tax amount.

collected_atstring date-time nullable required

Date and time the charge was collected.

created_atstring date-time required

The timestamp (in ISO-8601 format) of when the resource was created.

currency'EUR' | 'USD' | 'GBP' required
idstring required

Unique resource identifier.

is_fully_refundedboolean required

Whether the full charge has been refunded.

is_partially_refundedboolean required

Whether part of the charge has been refunded.

modified_atstring date-time required

The timestamp (in ISO-8601 format) of when the resource was last modified.

period_endstring date nullable required

End date of the period covered by the charge.

period_startstring date nullable required

Start date of the period covered by the charge.

refundable_amountstring required

Amount remaining eligible for refund.

refunded_amountstring required

Amount already refunded.

related_transactionstring nullable required

Transaction associated with the fee charge.

related_transaction_amountstring nullable required

Amount of the associated transaction.

tax_ratestring nullable required

Tax rate applied to the fee charge.

Example response

{
  "amount_fee": "10.00",
  "amount_tax": "2.00",
  "amount_total": "12.00",
  "collected_at": "2026-02-01T09:30:00Z",
  "fee": {
    "tax_rate": "0.20"
  },
  "period_end": "2026-01-31",
  "period_start": "2026-01-01",
  "refundable_amount": "7.00",
  "refunded_amount": "5.00",
  "refunds": [
    {
      "amount": "25.00"
    }
  ],
  "related_transaction_amount": "250.00",
  "tax_rate": "0.20"
}