get_token_transfers_by_address
Track ERC-20 token transfers for a specific address within defined time ranges. Filter by token contract and paginate results using start and end timestamps for efficient data retrieval.
Instructions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Address which either transfer initiator or transfer receiver | |
age_from | No | Start date and time (e.g 2025-05-22T23:00:00.00Z). This parameter should be provided in most cases to limit transfers and avoid heavy database queries. Omit only if you absolutely need the full history. | |
age_to | No | End date and time (e.g 2025-05-22T22:30:00.00Z). Can be omitted to get all transfers up to the current time. | |
chain_id | Yes | The ID of the blockchain | |
token | No | An ERC-20 token contract address to filter transfers by a specific token. If omitted, returns transfers of all tokens. |