Get a Wallet (v2.2)
Overview
Retrieves real-time balances, available funds, currency parameters, and account ownership metadata for a specific wallet by its unique ID.
HTTP Request
GET /banking/ibans/v2/profile/v2.2/wallets/{id}
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>
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | Unique identifier of the wallet (e.g. 11435) |
Code Examples
- cURL
- JavaScript (Axios)
- Python (Requests)
curl -X GET "https://api.ahrvo.network/banking/ibans/v2/profile/v2.2/wallets/{id}" \
-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/{id}', {
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/{id}"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer <your_access_token>"
}
response = requests.get(url, headers=headers)
print(response.json())
Response (200)
{
"success": true,
"wallet": {
"id": 2560,
"customReferenceLabel": "Default USD Wallet",
"balance": "10000000",
"currency": "EUR",
"accountMode": "multi",
"localAccountDetails": {
"name": "HeyPay",
"accountNumber": "DE60202208000094767314",
"sortCode": "SXPYDEHH",
"bankName": "BankingCircle",
"bankAddress": "MAXIMILIANSTR 54, MUENCHEN, D-80538, Germany"
},
"globalAccountDetails": {
"name": "HeyPay",
"accountNumber": "DK8089000094767314",
"swiftCode": "SXPYDKKK",
"bankName": "BankingCircle",
"bankAddress": "AMERIKA PLADS 38, KOEBENHAVN, 2900, Denmark"
}
}
}
Interactive API Explorer
Test this endpoint live against the Ahrvo gateway and Verto sandbox environments: