Headers
Must be set to 2024-08-13. If not set to this value, the endpoint will default to an older version.
value must be Bearer <token> where <token> is api key prefixed with cal_ or managed user access token
curl --request GET \
--url https://api.cal.com/v2/bookings/{bookingUid}/transcripts \
--header 'Authorization: <authorization>' \
--header 'cal-api-version: <cal-api-version>'{
"status": "success",
"data": [
"https://transcript1.com",
"https://transcript2.com"
],
"error": {}
}Fetches all the transcript download links for the booking :bookingUid
Transcripts are generated when clicking “Transcribe” during a Cal Video meeting. Download links are valid for 1 hour only - make a new request to generate fresh links after expiration.
Please make sure to pass in the cal-api-version header value as mentioned in the Headers section. Not passing the correct value will default to an older version of this endpoint.
curl --request GET \
--url https://api.cal.com/v2/bookings/{bookingUid}/transcripts \
--header 'Authorization: <authorization>' \
--header 'cal-api-version: <cal-api-version>'{
"status": "success",
"data": [
"https://transcript1.com",
"https://transcript2.com"
],
"error": {}
}Must be set to 2024-08-13. If not set to this value, the endpoint will default to an older version.
value must be Bearer <token> where <token> is api key prefixed with cal_ or managed user access token
Was this page helpful?