The Initial Coin Offering API provides information on upcoming, past and present token presales. It allows you to sort by filters, trends, profile tickers and more.
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://zloadr-icos-v1.p.rapidapi.com/RapidAPI/icos/all") .header("X-RapidAPI-Key", "undefined") .end(function (result) { console.log(result.status, result.headers, result.body); });