Objects | BASIC $0.00 / MO | PRO $25.00 / MO | ULTRA $45.00 / MO | MEGA $99.00 / MO |
---|---|---|---|---|
verifications | QUOTA20 / day then $0.02 each | QUOTA100 / day then $0.01 each | QUOTA200 / day then $0.01 each | QUOTA500 / day 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://email-checker.p.rapidapi.com/verify/v1?email=<required>") .header("X-RapidAPI-Key", "undefined") .end(function (result) { console.log(result.status, result.headers, result.body); });