Skip to main content
GET
/
v1
/
recordings
/
{id}
/
transcript
Get a recording transcript
curl --request GET \
  --url https://integrations.salesask.com/v1/recordings/{id}/transcript \
  --header 'x-api-key: <api-key>'
{
  "recordingId": "abc123",
  "transcript": [
    {
      "speaker": "Sales Rep",
      "text": "Thanks for taking the time today.",
      "start": 1200,
      "end": 4350
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

The recording ID

Response

OK

recordingId
string
Example:

"abc123"

transcript
object[]