Docs
Supported ChainsTempoJSON-RPC APITrace Methods

trace_transaction - Tempo RPC Method

Get traces for a specific transaction on Tempo. Requires archive node for merchant settlement, treasury operations, payout automation, and stablecoin-native financial applications.

Returns all traces for a specific transaction on Tempo.

Archive Node Required

This method requires an archive node. It is not available on full nodes.

Use Cases

  • Transaction analysis - See all internal calls made by a transaction
  • Token transfer tracking - Trace value flows through contracts
  • Debugging - Understand execution flow for merchant settlement, treasury operations, payout automation, and stablecoin-native financial applications

Request Parameters

Request
txHashDATA

32-byte transaction hash

Response Body

Response

Code Examples

Bash
curl -X POST https://api-tempo-mainnet.n.dwellir.com/YOUR_API_KEY \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "trace_transaction",
    "params": ["0x50b1857dce8dbe401e09610534de81655bc508c6765eb30ecefe24148c515c28"],
    "id": 1
  }'

On this page