Monitor all blocks that are successfully applied and stored by the node, disregarding whether they were selected as the new head or not.
Block header. It contains both shell and protocol specific data.
const response = await fetch('https://xtz.nownodes.io/monitor/applied_blocks', { method: 'GET', headers: {}, }); const data = await response.json();
{ "chain_id": "text", "hash": "text", "header": { "level": 0, "proto": 0, "predecessor": "text", "timestamp": "text", "validation_pass": 0, "operations_hash": "text", "fitness": [ "text" ], "context": "text", "protocol_data": "text" }, "operations": [ [ { "branch": "text", "data": "text" } ] ] }