AppsBuilder is a do it yourself platform for mobile applications development. No coding skills are needed! Trough a single building process users can create an app for iOS (iPad, iPhone/iPod), Android (Tablets & Phones) and Windows Phone. Last but not least, your app will be available for the Chrome Web Store and with a Mobile Site Html5 version.
All content is stored on Cloud, enabling real time updates.
All JSON structures can also be retrieved here: https://appsbuilder.atlassian.net/wiki/display/res/App+JSON
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://appsbuilder.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); });