Skip to main content
GET
/
voice
/
calls
/
{callId}
/
transcript
cURL
curl --request GET \
  --url https://api.useanima.sh/v1/voice/calls/{callId}/transcript \
  --header 'Authorization: Bearer <token>'
{
  "callId": "<string>",
  "segments": [
    {
      "speaker": "<string>",
      "text": "<string>",
      "startTime": 123,
      "endTime": 123,
      "confidence": 123,
      "isFinal": true
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT Bearer token obtained from authentication. Pass as: Authorization: Bearer

Path Parameters

callId
string
required

Response

200 - application/json

OK

callId
string
required
segments
object[]
required