This endpoint provides tools for analyzing content, including text summarization, sentiment detection, and keyword extraction. It is designed for developers seeking to integrate advanced analysis capabilities into their applications.
Features
- Text Summarization: Generate concise summaries of long documents 📚
- Sentiment Analysis: Determine the emotional tone of text 😊/😢
- Keyword Extraction: Identify key terms and phrases in content 🔍
Usage Example
GET /en/api/content/analyze?text=Your+input+text+here
Replace Your+input+text+here
with the text you want analyzed. Parameters are URL-encoded.
Response Format
{
"summary": "Short summary of the input text",
"sentiment": "positive/negative/neutral",
"keywords": ["keyword1", "keyword2", "keyword3"]
}
Related Endpoints
For detailed implementation guides or to test the API, visit the analysis documentation page.