Bank Feed
Fetch Account Balance
GET
/
api
/
bank
/
accounts
/
{accountId}
/
balance
curl --request GET \
--url https://api.atoa.me/api/bank/accounts/{accountId}/balance \
--header 'Authorization: Bearer <token>'
{
"balance": 100.45,
"currency": "GBP"
}
Use this to fetch the current balance and currency information of a linked bank account.
Authorization
Bearer <token>
Request Body Schema
accountId
string
requiredID of the user’s bank account. This can be obtained from the redirect URL after account linking or by using the Fetch All Accounts API Reference endpoint.
Refer:- Accounts
Response
balance
number
The current balance amount in the bank account.
currency
string
The currency code of the account balance (e.g., GBP, EUR, USD).
curl --request GET \
--url https://api.atoa.me/api/bank/accounts/{accountId}/balance \
--header 'Authorization: Bearer <token>'
{
"balance": 100.45,
"currency": "GBP"
}