Integrate Sentient's AI analysis into your applications with our REST API.
The Sentient API allows you to analyze customer feedback programmatically. All requests require authentication via API key.
https://api.sentient.ai/v1Include your API key in the Authorization header:
Authorization: sk_your_api_key_hereGet your API key from your dashboard settings (Pro plan required).
{
  "text": "The app is great but checkout is slow",
  "options": {
    "include_themes": true,
    "include_sentiment": true,
    "include_entities": true
  }
}{
  "themes": ["UI/UX", "Performance"],
  "sentiment_score": 0.65,
  "entities": ["app", "checkout"],
  "confidence": 0.92,
  "processing_time": "1.2s"
}