Skip to main content
POST
/
api
/
Account
/
gethistory
Get Account History
curl --request POST \
  --url https://api.altude.so/api/Account/gethistory \
  --header 'X-API-Key: <x-api-key>'
{
  "transactions": [
    {
      "signature": "5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d",
      "slot": 123456789,
      "blockTime": 1640995200
    }
  ]
}

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.

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

headers

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

Query Parameters

PageNumber
integer
The page number for pagination
PageSize
integer
The number of items per page
WalletAddress
string
required
The wallet address to get history for
MintAddress
string
Filter transactions by specific mint address
Limit
integer
Maximum number of transactions to return

Response

transactions
array
Array of transaction objects
{
  "transactions": [
    {
      "signature": "5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d",
      "slot": 123456789,
      "blockTime": 1640995200
    }
  ]
}