Get Account Balance
Fetch all balances of different assets in an account
API endpoint
/api/fetchAccountBalance?accountId={accountId}
Request Samples
GET https://verified-api.azurewebsites.net/api/fetchAccountBalance?accountId=0xaA0d06ed9CeFb0B26ef011363c9d7880feda8f08
Response Samples
Content type
application/json
{
"result": [
{
"currencySymbol": "USDC",
"currencyTokenDecimals": 6,
"totalAmount": 4.4
}
]
}
Last updated