var address = '1NdJsXeKxNv5EtHPVBQ1QfpEgyi5aTvV3B'; insight.getUnspentUtxos(address, function(err, utxos) { if (err) {} else { console.log(utxos.map(function(v){ return { txid : v.txId, vout : v.outputIndex, satoshi : v.satoshis, btc : (v.satoshis * 1e-8).toFixed(8), }})) } });