var unirest = require(“unirest”);
var req = unirest(“GET”, “https://instagramdimashirokovv1.p.rapidapi.com/tagged/5821462185/optional”);
req.headers({
“x-rapidapi-key”: “53f99be05cmshe3017e761f9d986p1d6bfejsn2e70c39e28b0”,
“x-rapidapi-host”: “InstagramdimashirokovV1.p.rapidapi.com”,
“useQueryString”: true
});
req.end(function (res) {
if (res.error) throw new Error(res.error);
console.log(res.body);
});