List All Wallets (v2.2)
Overview
Returns an enhanced list of multi-currency wallets featuring real-time available balances, reserved balances, pending inward clearing, and funding capabilities.
HTTP Request
GET /banking/ibans/v2/profile/v2.2/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.2/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.2/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.2/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": 2809,
"currency": "GHS"
},
{
"id": 2718,
"currency": "ZAR"
}
],
"metadata": {
"total": 11,
"currentPage": 1,
"pageSize": 10
}
}
Interactive API Explorer
Test this endpoint live against the Ahrvo gateway and Verto sandbox environments: