Skip to main content
GET
Get Fees

Overview

Returns the fee schedule that the Business API currently applies to NGN deposits, NGN bank transfers, USD virtual-account deposits, USD transfers, and crypto withdrawals. Call this endpoint before you display a fee estimate. The current NGN deposit fee is 1%, capped at NGN 100. For NGN bank transfers, the fee is NGN 20 when the recipient amount is below NGN 1,000. From NGN 1,000 upward, the transfer fee is 1%, capped at NGN 100. Percentage fields contain percentage values, not basis points. For example, "1.0000" means 1%.

Authentication

string
required
Your Business API key.

Request example

Response

How to apply the NGN transfer fee

Use the amount the bank recipient will receive:
  • Reject an amount below minimum_transfer_amount.
  • If the amount is less than low_value_transfer_threshold, charge low_value_transfer_fee.
  • Otherwise, calculate transfer_fee_percent and limit the result to transfer_fee_cap.
  • Charge the fee separately. Do not subtract it from the recipient amount.
For example, an NGN 500 transfer has an NGN 20 fee. An NGN 5,000 transfer has an NGN 50 fee. An NGN 20,000 transfer reaches the NGN 100 cap.
Use the response from this endpoint as the current schedule. Do not keep a fee value indefinitely in application code.

Errors