Natural language processing and text analysis
This API provides natural language processing and text analysis capabilities for understanding and processing human language.
import requests
url = "https://api.cloudmersive.com/nlp/sentiment/analyze"
headers = {
"Apikey": "YOUR_API_KEY",
"Content-Type": "application/json"
}
data = {
"Text": "This is a sample text for sentiment analysis."
}
response = requests.post(url, headers=headers, json=data)
print(response.json())Last 50 checks (10 min intervals)