Wallet API(s)
Get Wallet Balance
Get a wallet balance.
GET
/
api
/
v1
/
wallets
/
balances
/
{accountWalletId}
/
{currency}
curl --location 'https://api.recital.finance/api/wallets/balances/{accountWalletId}/{currency}' \
--header 'Authorization: Bearer apiKey'
{
"walletBalances": {
"accountWalletId": {accountWalletId},
"currency": "NGN",
"provider": "0009",
"ledger": 3045.150000,
}
}
Query
No query parameters are required.
The {accountWalletId}
and {currency}
are passed as part of the URL.
curl --location 'https://api.recital.finance/api/wallets/balances/{accountWalletId}/{currency}' \
--header 'Authorization: Bearer apiKey'
{
"walletBalances": {
"accountWalletId": {accountWalletId},
"currency": "NGN",
"provider": "0009",
"ledger": 3045.150000,
}
}
curl --location 'https://api.recital.finance/api/wallets/balances/{accountWalletId}/{currency}' \
--header 'Authorization: Bearer apiKey'
{
"walletBalances": {
"accountWalletId": {accountWalletId},
"currency": "NGN",
"provider": "0009",
"ledger": 3045.150000,
}
}
Assistant
Responses are generated using AI and may contain mistakes.