Display Customer Paid Fees
Ezypay is committed to helping businesses provide customers with clear visibility of any extra fees they may incur. By leveraging Ezypay's Customer Paid Fees API, integrators can retrieve fee information and include it seamlessly within their platform.
Understanding Ezypay fees API response
The Customer Paid Fees API provides detailed information about fees that apply to customers. Below is a breakdown of the API response parameters:
Parameters | Description |
|---|---|
| The fee type. Applicable value |
| Verbal description of the fee |
| Specifies applicable payment methods (e.g., |
| Indicates the accounting code for the fee. If |
| How the fee is charged: |
| The fixed fee amount. |
| The percentage charged based on the transaction amount. |
Example API response
{
"data": [
{
"pricingCode": "failed_payment_fee",
"description": "Failed Payment Fee",
"appliesTo": [],
"accountingCode": null,
"chargingOption": "AMOUNT",
"amount": 8.5,
"percentage": 0
},
{
"pricingCode": "transaction_fee",
"description": "Card Fee",
"appliesTo": [
"MASTERCARD",
"VISA"
],
"accountingCode": null,
"chargingOption": "BOTH",
"amount": 0.5,
"percentage": 0.37
},
{
"pricingCode": "transaction_fee",
"description": "Bank Fee",
"appliesTo": [
"BANK"
],
"accountingCode": null,
"chargingOption": "BOTH",
"amount": 0.35,
"percentage": 0.15
},
{
"pricingCode": "load_fee",
"description": "Load Fee",
"appliesTo": [],
"accountingCode": null,
"chargingOption": "AMOUNT",
"amount": 2,
"percentage": 0
}
],
"paging": {
"nextUrl": null,
"nextCursor": 0,
"limit": 4,
"totalCount": 4
}
}Using the above response, the fees can be summarised as:
- Failed Payment Fee: $8.50 (applies to all payment methods).
- Card Fee (Visa/Mastercard): $0.50 + 0.37% of the transaction amount.
- Bank Fee (Direct Debit): $0.35 + 0.15% of the transaction amount.
- Load Fee: $2.00 (applies to all payment methods).
ImportantThe API only returns customer-paid fees. These fees must be displayed to customers as additional charges.
Examples of displaying fees

Updated 5 days ago