Last updated 2 months ago
Get the tx history by address.
Address
Successful operation
"OK"
const response = await fetch('https://open-api-fractal.unisat.io/v1/indexer/address/{address}/history?cursor=0&size=0', { method: 'GET', headers: {}, }); const data = await response.json();
{ "code": 0, "msg": "OK", "data": { "detail": [ { "txid": "text", "nIn": 0, "nOut": 0, "inSatoshi": 0, "outSatoshi": 0, "locktime": 0, "size": 0, "witOffset": 0, "height": 0, "idx": 0, "blkid": "text", "confirmations": 0, "timestamp": 0 } ], "start": 0, "total": 0 } }