Skip to main content
GET
/
api
/
v1
/
call-logs
/
{id}
/
transcriptions
cURL
curl --request GET \
  --url https://app.callx.io/api/v1/call-logs/{id}/transcriptions \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "callLogId": "<string>",
  "transcript": [
    {
      "speaker": "assistant",
      "text": "<string>",
      "timestamp": "2023-11-07T05:31:56Z"
    }
  ],
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The ID of the call log

Query Parameters

format
enum<string>

Response format (text for plain text, omit for JSON)

Available options:
text

Response

Transcription retrieved successfully

id
string
required

Unique identifier for the transcription

callLogId
string
required

ID of the associated call log

transcript
object[]
required

Array of transcribed segments with speaker information

createdAt
string<date-time>
required

When the transcription was created