GET
/
v1
/
call
/
{id}
/
sentiment-run
curl --request GET \
  --url https://api.roark.ai/v1/call/{id}/sentiment-run \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "status": "<string>",
    "averageSentiment": 123,
    "averageCategoricalSentiment": "<string>",
    "commonEmotion": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

ID of the call to fetch sentiment run for

Response

200
application/json

Sentiment analysis for a specific call

The response is of type object.