get_internal_transactions
Fetch internal transactions (contract-to-contract calls) for an Ethereum address, including value, direction, and type. Ideal for tracing DeFi interactions or contract execution flows.
Instructions
List internal transactions (contract-to-contract calls) for an address. These are transactions triggered by smart contracts, not direct EOA transfers. Returns value (ETH), direction, type (call/create), date, and hash. Use for tracing DeFi interactions or contract execution flows.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | Ethereum address (0x...) to fetch internal transactions for | |
| startblock | No | Starting block number (default 0) | 0 |
| endblock | No | Ending block number (default latest) | 99999999 |
| page | No | Page number (default 1) | 1 |
| offset | No | Number of results per page (default 20, max 10000) | 20 |
| sort | No | Sort order (default desc — newest first) | desc |