Sentiment Analysis

Sentiment Analysis

Text Analysis & NLP
4.792 reviews
210ms

A comprehensive API for analyzing the sentiment, emotional tone, and opinion expressed in text content. Our advanced Natural Language Processing (NLP) algorithms accurately detect positive, negative, and neutral sentiments while providing detailed scores, emotional analysis, and contextual insights. Perfect for brand monitoring, customer feedback analysis, social media listening, product reviews, and market research.

Multi-Language Support
Overall Sentiment Scoring
Emotional Tone Analysis
Sentence-Level Analysis
Word-Level Sentiment
Confidence Scoring
Context-Aware Processing
Fast Response Time

API Playground

Test the API endpoints with different parameters and see the responses in real-time.

Analyze sentiment of text content using a GET request with query parameters

GET/api/sentiment-analysis-logo/

Request Parameters

GET/api/sentiment-analysis-logo/

Required Parameters1

string

The text content to analyze for sentiment and emotional tone

Optional Parameters

6 available
string

ISO 639-1 language code (en, es, fr, de, etc.). Auto-detected if not specified

boolean

Include emotional tone analysis in the response

boolean

Include sentence-level sentiment analysis in the response

boolean

Include word-level sentiment analysis in the response

integer

Maximum number of words to analyze individually (1-200)

float

Minimum score threshold for considering sentiment significant (0-1)

Sample Code

curl
1
2
3
curl -X GET "/api/sentiment-analysis-logo/?text=I really love the new update! The interface is so much better now, though there are still a few minor bugs that need to be fixed.&language=&includeEmotions=true&includeSentences=true&includeWordAnalysis=true&maxWordsToAnalyze=50&threshold=0.0" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY"