List All Wallets (v2.1)
Overview
Retrieves the full list of multi-currency wallets associated with your corporate profile, including currency codes, ledger balances, and active statuses.
HTTP Request
GET /banking/ibans/v2/profile/v2.1/wallets
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/wallets" \
-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/wallets', {
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/wallets"
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": 19,
"balance": "0.00",
"currency": "BDT"
},
{
"id": 18,
"balance": "30316.94",
"currency": "EUR"
},
{
"id": 14,
"balance": "575.15",
"currency": "GBP"
},
{
"id": 12,
"balance": "0.00",
"currency": "MYR"
},
{
"id": 11,
"balance": "0.00",
"currency": "THB"
},
{
"id": 10,
"balance": "0.00",
"currency": "KWD"
},
{
"id": 9,
"balance": "0.00",
"currency": "QAR"
},
{
"id": 8,
"balance": "0.00",
"currency": "IDR"
},
{
"id": 7,
"balance": "0.00",
"currency": "HRK"
},
{
"id": 6,
"balance": "0.00",
"currency": "RUB"
},
{
"id": 5,
"balance": "0.00",
"currency": "BGN"
},
{
"id": 3,
"balance": "556.00",
"currency": "INR"
},
{
"id": 4,
"balance": "0.00",
"currency": "BHD"
},
{
"id": 2,
"balance": "0.00",
"currency": "CNY"
},
{
"id": 1,
"balance": "11132.69",
"customReferenceLabel": "USDDD",
"currency": "USD"
}
],
"metaData": {
"total": 15,
"current_page": "1",
"page_size": "50"
}
}
Interactive API Explorer
Test this endpoint live against the Ahrvo gateway and Verto sandbox environments: