Skip to main content
GET
/
calls
/
{id}
/
transcript
/
Get Call Transcript
curl --request GET \
  --url https://data.craftflow.co/api/v1/calls/{id}/transcript/ \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "f6a7b8c9-d0e1-2345-fabc-678901234567",
    "transcript": [
      {
        "speaker": "CSR",
        "text": "Thank you for calling, how can I help you today?",
        "start": 0,
        "end": 2800
      },
      {
        "speaker": "Customer",
        "text": "Hi, my AC stopped working and it's really hot in here.",
        "start": 3200,
        "end": 6500
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Your API key, prefixed with cf_live_.

Path Parameters

id
string<uuid>
required

The unique identifier of the call.

Response

The transcript for the call.
data
object
required