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
- JavaScript (Axios)
- Python (Requests)
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>"
import axios from 'axios';
const response = await axios.get('https://api.ahrvo.network/banking/ibans/v2/profile/v2.1/currencies', {
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer <your_access_token>'
}
});
console.log(response.data);
import requests
url = "https://api.ahrvo.network/banking/ibans/v2/profile/v2.1/currencies"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer <your_access_token>"
}
response = requests.get(url, headers=headers)
print(response.json())
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: