Check out the Healh & Fitness APIs avaibled on RapidAPI. From calculating your BMI to tracking how many steps you got this week through FitBit, this API collection has you covered. Use healthcare APIs to get access to medical data, check health symptoms, track air quality, and more! Sign up today for FREE to begin using these Health and Fitness APIs!
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.("https://") .header("X-RapidAPI-Key", "undefined") .header("Content-Type", "application/x-www-form-urlencoded") .end(function (result) { console.log(result.status, result.headers, result.body); });