> ## 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 Account Balance

> Get the balance of a specific account

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

## headers

<ParamField header="X-API-Key" type="string" required>
  The API key created from [Altude](https://altude.so)
</ParamField>

## Request Body

<ParamField body="accountAddress" type="string" required>
  The address of the account to get the balance for
</ParamField>

<ParamField body="mintAddress" type="string">
  The mint address of the token to get the balance for (optional)
</ParamField>

## Response

<ResponseField name="success" type="boolean">
  Indicates if the request was successful
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "balance": 1000000
  }
  ```
</ResponseExample>
