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

> Get transaction history for an account

Retrieve the transaction history for a specific wallet address with optional pagination and filtering.

## headers

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

## Query Parameters

<ParamField query="PageNumber" type="integer">
  The page number for pagination
</ParamField>

<ParamField query="PageSize" type="integer">
  The number of items per page
</ParamField>

<ParamField query="WalletAddress" type="string" required>
  The wallet address to get history for
</ParamField>

<ParamField query="MintAddress" type="string">
  Filter transactions by specific mint address
</ParamField>

<ParamField query="Limit" type="integer">
  Maximum number of transactions to return
</ParamField>

## Response

<ResponseField name="transactions" type="array">
  Array of transaction objects
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "transactions": [
      {
        "signature": "5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d",
        "slot": 123456789,
        "blockTime": 1640995200
      }
    ]
  }
  ```
</ResponseExample>
