Skip to Content
Yodao 2.0 soon ... πŸš€
Transaction Parser

🧾 Transaction balances & flows

Use the playground below to call GET /transaction/{signature}/data. It returns:

  • a balances table showing before/after/delta per wallet and token (SOL + SPL),
  • an ordered list of SPL/SOL fund flows (top-level and inner instructions).
Transaction Data Explorer
/transaction/:signature/data

Enter a transaction signature and call the endpoint

What the endpoint returns

Balances

  • owner β€” wallet address that holds the SOL/SPL balance.
  • tokenMint β€” token mint or SOL.
  • preUI / postUI / deltaUI β€” human-readable amounts formatted with decimals.
  • preRaw / postRaw / deltaRaw β€” amounts in base units (lamports / token base units).

Flows

  • sequence β€” execution order index (top-level + inner instructions).
  • fromOwner β†’ toOwner β€” sender and receiver wallets.
  • tokenMint β€” SPL mint involved in the transfer.
  • amountUI / amountRaw β€” transfer size in formatted and raw units.
  • programId β€” Solana program that executed the instruction.
  • instructionType β€” decoded Solana instruction type (e.g., systemTransfer, splTransferChecked).
Last updated on