Get Account Wallets

GET /account/wallets

Returns all wallets belonging to the authenticated user, including balances, currency, status, and metadata

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Response

    "statusCode": 200,
    "statusMessage": "Request successful",
    "payload": {
        "bankAccounts": [
             {
                "id": "00771c4e-d1e3-43e6-a255-988247e9cacc",
                "status": true,
                 "currency_exponent": "2",
                 "balances": {
                     "debit_balance": {
                         "amount": 0,
                         "currency": "EUR"
                     },
                     "available_balance": {
                         "amount": 0,
                         "currency": "EUR"
                     },
                    "balance": {
                        "amount": 0,
                        "currency": "USD"
                    },
                    "credit_balance": {
                        "amount": 0,
                        "currency": "USD"
                    }
                },
                "metadata": {
                    "type": "bankAccount",
                    "name": "Test Company Name",
                    "iban": "BG31PATC4002115468108680",
                    "bic": "PATCBGSFXXX",
                },
                "created_at": "2025-12-15T20:32:35.547Z",
                "updated_at": "2025-12-15T20:32:35.547Z",
            }
        ],
        "wallets": [...],
        "traceId": "gdlyfx1kn79mm0e66an"
    }
}

Last updated