Returns a summary of transactions in a specific block. Each item contains the account address and transaction ID, but not full transaction details. Use count to limit results and after_lt/after_hash for pagination. Call getTransactions with each transaction ID to get full details.
Request to fetch transactions from a specific block with optional pagination.
Workchain ID: -1 for masterchain, 0 for basechain. Most user transactions are on workchain 0.
Shard identifier. A signed 64-bit integer. Masterchain uses -9223372036854775808.
Block or wallet sequence number. For blocks, this is the block height. For wallets, increment this for each outgoing transaction.
Merkle root hash of the block state tree. Used for cryptographic verification.
Hash of the serialized block data. Together with root_hash, uniquely identifies a block.
Return items after this logical time (for pagination).
Return items after this hash (for pagination within same lt).
Maximum number of items to return.
OK
Response containing list of transactions in a block.
Indicates if the request succeeded. If false, check the error field for details.
The response data. Only present when ok is true.
Optional request ID that you can pass in the request and receive back in the response. Useful for matching async responses.