| Jun | JUL | Aug |
| 26 | ||
| 2018 | 2019 | 2020 |

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.("https://")
.header("X-RapidAPI-Key", "SIGN-UP-FOR-KEY")
.header("Content-Type", "application/x-www-form-urlencoded")
.end(function (result) {
console.log(result.status, result.headers, result.body);
});