Over 90% accurate on our tests. Pass it text, get back a score representing the sentiment of the text you pass in. Trained on IMDB movie data.
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://mikerlynn-text-tone-v1.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); });