chain and a tx_hash, and the API returns a full TxReport — intent classification, token economics, actor attribution, DeFi position effects, and more. The entire round-trip typically takes a few seconds.
No authentication is required today. Future-compatible clients should be prepared to pass
x-api-key: <api-key> in request headers when key-based access is introduced.1
Send your first request
POST a transaction hash to the You will receive a
/analyze endpoint. The body requires two fields: chain (always "ethereum" for now) and tx_hash.TxReport JSON object in the response body. The top-level sections are classification, economics, inventory_deltas, motifs, attribution, position_effects, and pipeline_stats.2
Read the classification
The
classification section tells you what the transaction did and how confident the pipeline is.3
Read the economics
The
economics section gives you the financial summary: what went in, what came out, net USD value, and gas cost.USD values use the
DisplayMoney shape — always check available: true before reading text. See Core Concepts for details.4
Explore the full TxReport
The complete response includes additional sections:
inventory_deltas (per-subject token flows), motifs (structural evidence patterns), position_effects (DeFi borrow/repay/liquidity events), attribution (protocol and contract labels), and pipeline_stats (timing and coverage metadata).See the TxReport schema reference for the full field-by-field breakdown.Request Examples
Next Steps
- Core Concepts — understand the TxReport structure, intent kinds, motifs, and valuation model
- API Reference: /analyze — full request/response schema for the analyze endpoint