Love music ? This API will search for tracks/ songs in mp3 formate and gets direct download/stream links to you. You can then either stream the track directly or download it. it can search for all indian , english and other local music. download wont cost you anything!!!
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://instatunes.p.rapidapi.com") .header("X-RapidAPI-Key", "undefined") .header("Content-Type", "application/x-www-form-urlencoded") .end(function (result) { console.log(result.status, result.headers, result.body); });