Skip to main content

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

ParameterTypeRequiredDescription
idstringYesUnique identifier of the wallet (e.g. 11435)

Code Examples

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>"

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: