API Documentation

Integrate Sentient's AI analysis into your applications with our REST API.

Getting Started

The Sentient API allows you to analyze customer feedback programmatically. All requests require authentication via API key.

Base URL
https://api.sentient.ai/v1

Authentication

Include your API key in the Authorization header:

Authorization: sk_your_api_key_here

Get your API key from your dashboard settings (Pro plan required).

Analyze Text

POST /analyze
{
  "text": "The app is great but checkout is slow",
  "options": {
    "include_themes": true,
    "include_sentiment": true,
    "include_entities": true
  }
}
Response:
{
  "themes": ["UI/UX", "Performance"],
  "sentiment_score": 0.65,
  "entities": ["app", "checkout"],
  "confidence": 0.92,
  "processing_time": "1.2s"
}

Rate Limits

Pro Plan
100
requests/hour
Enterprise
1,000
requests/hour

SDKs

PythonAvailable
Node.jsComing Soon

Need Help?

Our support team is here to help with API integration.

Contact Support