POST
/
api
/
Account
/
gethistory
Get Account History
curl --request POST \
  --url https://api.altude.so/api/Account/gethistory \
  --header 'Authorization: Bearer <token>'
{
  "transactions": [
    {
      "signature": "5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d",
      "slot": 123456789,
      "blockTime": 1640995200
    }
  ]
}
Retrieve the transaction history for a specific wallet address with optional pagination and filtering.

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
    }
  ]
}