Skip to main content
ParaLens requires no signup or API key today. You POST a JSON body containing a 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 /analyze endpoint. The body requires two fields: chain (always "ethereum" for now) and tx_hash.
You will receive a 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