Get all UTXO changes of a given milestone by milestone index.
Index of the milestone to look up.
154862
Successful operation.
The index number of the milestone.
The created outputs of the given milestone.
The consumed outputs of the given milestone.
const response = await fetch('https://iota.nownodes.io/api/core/v2/milestones/by-index/{index}/utxo-changes', { method: 'GET', headers: {}, }); const data = await response.json();
{ "index": 0, "createdOutputs": [ "text" ], "consumedOutputs": [ "text" ] }