Skip to main content
POST
/
api
/
Account
/
balance
Get Account Balance
curl --request POST \
  --url https://api.altude.so/api/Account/balance \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <x-api-key>' \
  --data '
{
  "accountAddress": "<string>",
  "mintAddress": "<string>"
}
'
{
  "success": true,
  "balance": 1000000
}

Documentation Index

Fetch the complete documentation index at: https://docs.altude.so/llms.txt

Use this file to discover all available pages before exploring further.

Get the balance for a given account address. Optionally specify a mint address to get the balance for a specific token.

headers

X-API-Key
string
required
The API key created from Altude

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
}