> ## 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 Info

> Get detailed information about an account

Retrieve detailed information about a specific account address.

## 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 information for
</ParamField>

## Response

<ResponseField name="accountInfo" type="object">
  Detailed account information
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "accountInfo": {
      "address": "5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d",
      "owner": "11111111111111111111111111111112",
      "lamports": 1000000,
      "executable": false
    }
  }
  ```
</ResponseExample>
