Returns a block trace object containing retired actions and related metadata.
Provide a block number
block number
OK - valid response payload
const response = await fetch('https://eos.nownodes.io/v1/trace_api/get_block', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "block_num": 0 }), }); const data = await response.json();
{ "id": "text", "number": 0, "status": "text", "timestamp": "text", "producer": "text", "transactions": [ { "actions": [ { "global_sequence": 0, "authorization": [ {} ] } ] } ] }