Skip to main content
GET
/
fees
Retrieve fees
curl --request GET \
  --url https://developersandbox-api.flutterwave.com/fees \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "<string>",
  "data": {
    "charge_amount": 123,
    "fee": [
      {
        "type": "vat",
        "amount": 12.3
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Trace-Id
string

A unique identifier to track this operation. It must be between 12 and 255 characters in length.

Required string length: 12 - 255

Query Parameters

amount
number<decimal>
required

The amount in decimal format.

card6
string

The card BIN (Bank Identification Number)—the first six digits of the card number.

country
string

The ISO 3166-1 alpha-2 country code.

currency
string
required

ISO 4217 currency code.

network
string

The network for Mobile Money transaction.

payment_method
string
required

The Payment method of the transaction.

Response

OK

status
enum<string>
Available options:
success,
failed
message
string
data
object