v1

latestOpenAPI 3.0.32026-07-264469137.7 KB
Payments

List supported currencies

Get all supported fiat and cryptocurrency codes. Use this to validate currency selections and display currency options to users.

get/v1/currencies/supported

Response

Success

fiatstring[]

List of supported fiat (traditional) currencies. These are government-issued currencies like USD, NGN, GHS.

cryptostring[]

List of supported cryptocurrency codes. These may include network identifiers (e.g., 'USDT_TRC20' for Tron network, 'USDT_ERC20' for Ethereum network).

Example response

{
  "fiat": [
    "NGN"
  ],
  "crypto": [
    "USDT_TRC20"
  ]
}