Bitcoin, made simple. Coinbase is an international digital wallet that allows you to securely buy, use and accept bitcoin currency
To utilize unirest for node.js install the the npm module:
$ npm install unirest
After installing the npm package you can now start simplifying requests like so:
var unirest = require('unirest');
unirest.get("https://community-coinbase.p.rapidapi.com/addresses") .header("X-RapidAPI-Key", "undefined") .end(function (result) { console.log(result.status, result.headers, result.body); });