Retrieves decoded actions from transactions
actions endpoint retrieves decoded, human-readable actions from TON blockchain transactions. Actions represent high-level operations like Jetton transfers, NFT transfers, and TON transfers, parsed from raw transaction data.
action_id (string, optional) — Filter by specific action ID.trace_id (string, optional) — Get actions for a specific trace.tx_hash (string, optional) — Get actions for a specific transaction hash.tx_lt (integer, optional) — Filter by transaction logical time.account (string, optional) — Filter by account address.action_type (string, optional) — Filter by action type (e.g., JettonTransfer, NftItemTransfer, TonTransfer).start_utime (integer, optional) — Start of time range (unix timestamp).end_utime (integer, optional) — End of time range (unix timestamp).limit (integer, optional) — Maximum number of actions to return. Default: 10.offset (integer, optional) — Number of actions to skip for pagination. Default: 0.sort (string, optional) — Sort order: asc or desc. Default: desc.actions (array) — Array of action objects containing:
action_id (string) — Unique identifier for the action.trace_id (string) — Trace ID this action belongs to.tx_hash (string) — Hash of the transaction containing this action.type (string) — Type of action (e.g., JettonTransfer, NftItemTransfer, TonTransfer, ContractDeploy).status (string) — Action status (e.g., ok, failed).value (object) — Action-specific data (varies by action type).start_lt (integer) — Logical time when the action started.start_utime (integer) — Unix timestamp when the action started.end_lt (integer) — Logical time when the action ended.end_utime (integer) — Unix timestamp when the action ended.address_book (object) — Address book mapping raw addresses to user-friendly information.
actions endpoint provides a higher-level view of blockchain activity than raw transactions:
Action ID to filter by
Trace ID to get actions for
Transaction hash to get actions for
Transaction logical time
Filter by account address
Filter by action type (e.g., JettonTransfer, NftItemTransfer)
Start of the time range (unix timestamp)
End of the time range (unix timestamp)
Maximum number of actions to return
Number of actions to skip
Sort order
asc, desc