historical_token_balances
Retrieve historical native and ERC-20 token balances for a wallet address at a specific block height or date across multiple blockchain networks.
Instructions
Commonly used to fetch the historical native and fungible (ERC20) tokens held by an address at a given block height or dateRequired: chainName (blockchain network), address (wallet address). Optional: quoteCurrency for value conversion, blockHeight or date to specify point in time, nft (include NFTs, default false), noNftFetch, noSpam, and noNftAssetMetadata (all default true). Returns token balances as they existed at the specified historical point.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chainName | Yes | The blockchain network to query (e.g., 'eth-mainnet', 'matic-mainnet', 'bsc-mainnet'). | |
| address | Yes | The wallet address to get historical token balances for. Must be a valid blockchain address. | |
| quoteCurrency | No | Currency to quote token values in (e.g., 'USD', 'EUR'). If not specified, uses default quote currency. | |
| nft | No | Include NFT token balances in the response. Default is false. | |
| noNftFetch | No | Skip fetching NFT metadata. Default is true for better performance. | |
| noSpam | No | Filter out spam/scam tokens from results. Default is true. | |
| noNftAssetMetadata | No | Skip fetching NFT asset metadata. Default is true for better performance. | |
| blockHeight | No | Specific block height to get historical balances from. Cannot be used with date parameter. | |
| date | No | Specific date to get historical balances from (YYYY-MM-DD format). Cannot be used with blockHeight parameter. |