Sentiment Analysis

Task Description

This Sentiment Analysis endpoint analyzes sentiment in transcript text. It evaluates the emotional tone of the provided text and returns a structured sentiment analysis.

Inputs

  • Text: The transcript text to analyze for sentiment (required)

Output

Description

The API returns a JSON object containing sentiment analysis with:

  • overall: The detected sentiment (positive, negative, neutral, etc.)
  • explanation: A brief explanation of the reasoning behind the sentiment classification

Example

1{
2 "sentiment": {
3 "overall": "positive",
4 "explanation": "Strong positive language and enthusiastic tone"
5 }
6}