POST
/
api
/
Account
/
balance
Get Account Balance
curl --request POST \
  --url https://api.altude.so/api/Account/balance \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "accountAddress": "<string>",
  "mintAddress": "<string>"
}'
{
  "success": true,
  "balance": 1000000
}
Get the balance for a given account address. Optionally specify a mint address to get the balance for a specific token.

Request Body

accountAddress
string
required
The address of the account to get the balance for
mintAddress
string
The mint address of the token to get the balance for (optional)

Response

success
boolean
Indicates if the request was successful
{
  "success": true,
  "balance": 1000000
}