Skip to main content
GET
/
v1
/
calls
/
{id}
/
transcript
Get a call's transcript
curl --request GET \
  --url https://api.callingbox.io/v1/calls/{id}/transcript \
  --header 'Authorization: Bearer <token>'
{
  "call_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "segments": [
    {
      "sequence_no": 123,
      "role": "<string>",
      "text": "<string>",
      "started_at": "2023-11-07T05:31:56Z",
      "ended_at": "2023-11-07T05:31:56Z",
      "duration_ms": 123,
      "source": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
default:sk_live_your_api_key
required

API key starting with sk_

Path Parameters

id
string<uuid>
required

Call UUID

Response

Transcript

call_id
string<uuid>
segments
object[]