cURL
curl --request GET \ --url https://api.flutterwave.com/v3/transactions/fee \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: <content-type>'
{ "status": "success", "message": "Charged fee", "data": { "charge_amount": 100, "fee": 1.4, "merchant_fee": 0, "flutterwave_fee": 1.4, "stamp_duty_fee": 0, "currency": "NGN" } }
Get transaction fee expected to be paid for a particular transaction
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
application/json
"application/json"
100
"NGN"
OK
Show child attributes
{ "charge_amount": 100, "fee": 1.4, "merchant_fee": 0, "flutterwave_fee": 1.4, "stamp_duty_fee": 0, "currency": "NGN"}
Was this page helpful?