Skip to main content
GET
/
v1
/
calls
/
{id}
/
transcript
Retrieve a call transcript
curl --request GET \
  --url https://api.revdesk.com/v1/calls/{id}/transcript \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "call_id": "<string>",
    "transcript": "<string>",
    "structured_transcript": [
      {
        "role": "<string>",
        "text": "<string>",
        "timestamp": "<string>",
        "interrupted": true,
        "language": "<string>"
      }
    ],
    "transcript_provider": "<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

Response

Success

data
object
required