Parsed Transaction History
Parsed Transaction History for any given address.
Enhanced Transaction API V1 won't be updated while we work on V2.
Endpoints
Replace {address}
with the specific address for which you want to retrieve transaction data.
Mainnet –
https://api.helius.xyz/v0/addresses/{address}/transactions
Devnet –
https://api-devnet.helius.xyz/v0/addresses/{address}/transactions
Parsed Transaction History
Returns the enriched transaction history for a given address. For a full list of Transaction Types and Sources, please see Transaction Types. With no parameters set, this will return the latest transactions for an address.
We only parse NFT, Jupiter, and SPL related transactions. Do not rely on these parsers for DeFi or non-NFT, Jupiter, and SPL transactions.
Occasionally, this endpoint may return an incomplete set of transactions due to internal timeouts during data retrieval.
To mitigate this issue, we recommend to:
First, call
getSignaturesForAddress
to retrieve a batch of transaction signatures.Next, use the
/v0/transactions
endpoint with the received signatures.If any transactions are missing from the response. You can retry fetching these transactions.
Code Examples
Last updated