Last updated 7 days ago
Get the outputs of a tx.
Tx id
Successful operation
"OK"
const response = await fetch('https://open-api-fractal.unisat.io/v1/indexer/tx/{txid}/outs', { method: 'GET', headers: {}, }); const data = await response.json();
{ "code": 0, "msg": "OK", "data": { "address": "text", "inscriptions": [ { "inscriptionId": "text", "isBRC20": false, "moved": false } ], "scriptPk": "text", "scriptType": "text", "txid": "text", "txidSpent": "text" } }