Text Analytics with sentiment analysis, categorization & named entity extraction
Semantria is a paid REST API for text analytics, providing sentiment analysis, categorization, and named entity extraction services.
import requests
url = "https://api.semantria.com/analyze"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_KEY"
}
data = {
"text": "The quick brown fox jumps over the lazy dog."
}
response = requests.post(url, json=data, headers=headers)
print(response.json())Last 50 checks (10 min intervals)