# EVM Internal Transaction Tracer

> EVM Internal Transaction Tracer is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Lists all internal transactions (nested contract calls, value transfers, and call types) within an EVM transaction via Blockscout

## Facts

- Endpoint: GET https://api.agentstools.dev/evm/internal-tx
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/evm-internal-transaction-tracer-9b2e94e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-yi1K4u9NerGS08LgsOlh

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability evm-internal-transaction-tracer-9b2e94e0
```

Example prompt: Can you show me all the internal calls and value transfers inside Ethereum transaction 0x4e3a3754410177e6937ef1f84bba68ea139e8d1b0c3b42b44dd2abc09e9fde60? I want to see the full call tree, not just the top-level receipt.

## When to prefer this

Use this endpoint when you need to understand the internal execution flow of an EVM transaction beyond what the top-level receipt exposes — particularly for DeFi interactions, multi-hop token swaps, contract-to-contract calls, or security investigations. Prefer this over basic receipt lookups when value flow routing, call types (DELEGATECALL vs CALL), or nested sub-calls matter. Choose this over a block explorer UI when you need structured, machine-readable call tree data that an agent can programmatically analyze.

## Known failure modes

- Invalid or malformed transaction hash returns an error
- Transaction hash not found on the specified network
- Upstream Blockscout rate limiting causes degraded (partial) response rather than a hard error
- Unsupported network name returns validation error
- Transaction has no internal calls (EOA-to-EOA transfer) may return empty list

## How this service works

List the internal transactions of an EVM transaction: the nested contract calls and their value transfers and call types, via Blockscout. Reveals the value flow and call tree that a plain receipt hides. Rate-limited upstream degrades gracefully rather than erroring.

## Output

Returns a structured list of internal transactions within the given EVM transaction, including each nested contract call's call type (CALL, DELEGATECALL, STATICCALL, etc.), from/to addresses, value transferred in native currency, gas used, and the hierarchical call tree structure. Rate-limited upstream responses degrade gracefully rather than returning errors.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "tx"
     ],
     "properties": {
      "tx": {
       "type": "string",
       "description": "Transaction hash, 0x + 64 hex"
      },
      "network": {
       "enum": [
        "base",
        "ethereum",
        "arbitrum",
        "optimism",
        "polygon"
       ],
       "type": "string",
       "description": "EVM network with a Blockscout host (default base)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/evm-internal-transaction-tracer-9b2e94e0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
