content_analysis_sentiment_analysis
Analyze text sentiment for SEO content optimization by identifying positive, negative, or neutral emotional tones to improve audience engagement and content strategy.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| language_code | No | Language code | |
| language_name | No | Language name | |
| text | Yes | Text to analyze |
Input Schema (JSON Schema)
{
"properties": {
"language_code": {
"description": "Language code",
"type": "string"
},
"language_name": {
"description": "Language name",
"type": "string"
},
"text": {
"description": "Text to analyze",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}