Skip to main content

Wallet History

ยท One min read

Weโ€™ve just launched our Wallet History endpoint, allowing you to fetch the wallet's full transaction history, including sends, receives, token transfers, contract interactions, and potential spam, with sorting capability, with a single API call ๐Ÿคฏ

This endpoint includes several query parameters:

  • chain: Choose the blockchain to query ๐ŸŒ
  • from_block and to_block: Set the block range for the transactions you're interested in ๐Ÿ“Š. If both from_date and from_block (or to_date and to_block) are provided, the block parameter takes precedence.
  • from_date and to_date: Specify the date range for transactions. Accepts seconds or date strings compatible with moment.js ๐Ÿ“….
  • internal_transactions: Include internal transactions in your results when set to true โœ….
  • nft_metadata: Include NFT metadata in your results when set to true โœ….
  • cursor: Use this to paginate through results, utilizing the cursor provided in the previous response ๐Ÿ”„.
  • order: Sort the results in ascending (ASC) or descending (DESC) order ๐Ÿ”ข.
  • limit: Adjust the page size of your results to your preference ๐Ÿ“.

Check-out the API reference for more information