UNPKG

keychain.js

Version:

KeyChain JavaScript API wrapper repository

7 lines (6 loc) 294 B
const fetch = require('node-fetch'); const API_URL = 'https://test-insight.bitpay.com/api'; const address = 'YOUR_ADDRESS'; // myLrbwvwJN59quivKSxCxgiqLdCw8m7aDf fetch(`${API_URL}/addr/${address}`) .then( data => data.json() ) .then(({ balance }) => console.log('BTC Balance: ', balance));