Skip to main content

List All Supported Currencies

Overview

Returns all supported fiat and settlement currencies across the Verto platform, along with country pairings, decimal precision, and formatting rules.

HTTP Request

GET /banking/ibans/v2/profile/v2.1/currencies

Authentication

This endpoint requires an active Bearer JWT token in the Authorization header obtained via POST /banking/ibans/v2/users/login:

Authorization: Bearer <your_access_token>

Code Examples

curl -X GET "https://api.ahrvo.network/banking/ibans/v2/profile/v2.1/currencies" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <your_access_token>"

Response (200)

{
"success": true,
"data": [
{
"id": 7,
"currencyName": "AED",
"countryName": "UAE"
},
{
"id": 17,
"currencyName": "AUD",
"countryName": "Australia"
},
{
"id": 40,
"currencyName": "BDT",
"countryName": "Bangladesh"
},
{
"id": 21,
"currencyName": "BGN",
"countryName": "Bulgaria"
},
{
"id": 20,
"currencyName": "BHD",
"countryName": "Bahrain"
}
],
"metadata": {
"total": 51,
"currentPage": 1,
"pageSize": 5
}
}

Interactive API Explorer

Test this endpoint live against the Ahrvo gateway and Verto sandbox environments: