Skip to main content
GET
/
api
/
sessions
/
reporting
/
transcripts
/
{id}
Get transcript download URL
curl --request GET \
  --url https://app.coragents.ai/api/sessions/reporting/transcripts/{id} \
  --header 'Authorization: <api-key>'
{
  "url": "https://s3.amazonaws.com/.../transcript.json?X-Amz-...",
  "expires_at": "2024-06-01T12:30:00Z"
}

Authorizations

Authorization
string
header
required

API token using the Token scheme. Send the full header value as Token <your-api-token>. Tokens are provisioned by the Cor team.

Path Parameters

id
string<uuid>
required

Session UUID.

Response

A presigned transcript URL.

url
string<uri>

Presigned URL to a JSON transcript file. Valid for 1 hour.

Example:

"https://s3.amazonaws.com/.../transcript.json?X-Amz-..."

expires_at
string<date-time>
Example:

"2024-06-01T12:30:00Z"