Review analysis REST API

The REST API allows developers to easily integrate reviews analysis capabilities into their existing platforms. With just a simple, fast and well-built API call, you can send a review text and receive its sentiment analysis. Whether you're building a customer feedback platform, conducting market research, or monitoring social media sentiment, this API can be the perfect solution for you.

POST    /api/sentiment
Description & request/response example
Description
Send a review text, and get a binary classification of positive or negative sentiment, along with a corresponding accuracy score.

Http Request Body
{
  "text" : "i was very satisfied with this service"
}

Http Response

Media type : application/json
Http code   : 200 OK

{
  "sentiment": "Positive",
  "score": 98
}