sentence that summarises the entire trade, plus an actions array that breaks it down into every individual fill. This is useful when you want to understand exactly what happened inside a complex transaction — for example, how many counterparties were matched, at what prices, and how the shares and USDC were distributed across each fill.
Request
GET https://orbscan.com/open-api/v1/tx/{txHash}
Path Parameters
string
required
The transaction hash to decode. Must be a valid 0x-prefixed Ethereum transaction hash.Example:
0x66dc87fb47faf587002b89d183dbb9505fc7ef80da5e6ec49e271278e8d95fadExample Request
Response
boolean
true when the request succeeds, false otherwise.string
Application-level status code.
"0" indicates success.string
Human-readable status message, for example
"success".object
The decoded transaction detail.
Example Response
Understanding the Response
The sentence field
The sentence field gives you a single, ready-to-read plain-English summary of everything the transaction did. In the example above, "Buy 3604.58 No for $3546.12269 in Will Bitcoin dip to $59,000 on June 9?" tells you the direction (Buy), the quantity (3604.58 shares), the outcome (No), the total USDC spent ($3546.12269), and the market title — all in one string. Use this field whenever you need a compact, human-readable label for a transaction without further parsing.
The actions array
The actions array breaks the transaction down into its individual on-chain fills. A single trade often contains more than one fill because a market order can be matched against multiple resting limit orders at slightly different prices. Each element in actions represents one such match: it records the exact shares, price (in cents), txValue (USDC), the actor wallet, and whether they acted as the MAKER or TAKER. Summing the txValue across all fills gives you the total USDC value for the transaction, which matches the figure in sentence.