Research new and used cars including car prices, view incentives and dealer inventory listings, compare vehicles, get car buying advice and reviews at Edmunds.com
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-edmunds.p.rapidapi.com/api/vehiclereviews/v2/styles/{styleid}?pagesize=undefined&sortby=undefined&pagenum=undefined&callback=undefined") .header("X-RapidAPI-Key", "undefined") .end(function (result) { console.log(result.status, result.headers, result.body); });