POSTREADY / ONLINEFREE
Sentiment Analysis
Analisis emosi dan sentimen (positif, negatif, atau netral) dari teks secara real-time. Cocok untuk memantau ulasan produk atau media sosial.
ENDPOINT:/api/ai/sentiment
Endpoint Overview
MethodPOST
Path/api/ai/sentiment
AccessFree Tier / API Key
Total Usage340.510 requests
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| text | string | Yes | Teks yang ingin dianalisis sentimennya. |
Response Example
application/json200 OK
{
"status": true,
"result": {
"sentiment": "positive",
"score": 0.95,
"breakdown": {
"positive": 0.95,
"neutral": 0.04,
"negative": 0.01
}
}
}