Objects | BASIC $0.00 / MO | PRO $25.00 / MO | ULTRA $250.00 / MO | MEGA $4000.00 / MO |
---|---|---|---|---|
requests | QUOTA100000 / month then $0.001 each | QUOTA600000 / month then $0.001 each | QUOTA7500000 / month then $0.001 each | QUOTA150000000 / month then $0.001 each |
uploads | QUOTA10000 / month then $0.01 each | QUOTA60000 / month then $0.01 each | QUOTA750000 / month then $0.01 each | QUOTA15000000 / month then $0.01 each |
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://imgur-apiv3.p.rapidapi.com/3/gallery/{section}/{sort}/{window}/{page}?showViral=undefined") .header("X-RapidAPI-Key", "undefined") .end(function (result) { console.log(result.status, result.headers, result.body); });