Get Transaction Details logo

Catalog action EVM Onchain

Get transaction details including ETH value and USD conversion via Chainlink oracle. Returns sender, recipient, value in wei/ETH/USD, and the ETH price used. Ideal for: liquidity checks, transaction analysis, threshold filters, token launch sniping.

At a Glance

FieldValue
Action IDget-transaction-details
CategoryEVM Onchain
ConnectorNot required
Requires gasNo
Funds movementNone declared
Tagsblockchain, evm, transaction, query, read, price, oracle

Payload Schema

FieldTypeRequiredDescription
txHashstringYesTransaction hash to look up
chainIdnumberYesChain ID (1=Ethereum, 8453=Base, 42161=Arbitrum, etc.)

Result Schema

FieldTypeRequiredDescription
valueWeistringYesTransaction value in wei
valueEthnumberYesTransaction value in ETH (formatted)
valueUsdnumberYesTransaction value in USD via Chainlink oracle
ethPriceUsdnumberYesETH price in USD used for conversion
fromstringYesSender address
tostringYesRecipient address

Examples

json
{ "type": "get-transaction-details", "payload": { "txHash": "example-txHash", "chainId": 8453 }, "children": []}

Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.

Ask a question... ⌘I