Sentimentio
AI Text-Analysis API. Provide a text and get the Sentiment Analysis
1) Make a POST request to generate an API_KEY: https://sentimentio.com/api/keys
2) To trigger the Analysis, make a POST request to: https://sentimentio.com/api/sentiment?API_KEY=...
// Payload
{
"text": "Hello my friend. I feel extremely good today."
}
3) After a brief amount of time, the API will return a response with the results:
{
"sentimentResult": [
{
"id": "0",
"warnings": [],
"sentiment": "positive",
"confidenceScores": {
"positive": 1,
"neutral": 0,
"negative": 0
},
"sentences": [
{
"text": "Hello my friend.",
"sentiment": "neutral",
"confidenceScores": {
"positive": 0.04,
"neutral": 0.96,
"negative": 0
},
"offset": 0,
"length": 16
},
{
"text": "I feel extremely good today.",
"sentiment": "positive",
"confidenceScores": {
"positive": 1,
"neutral": 0,
"negative": 0
},
"offset": 17,
"length": 28
}
]
}
]
}
We have made 0
analyses so far!