Skip to main content
POST
/
api
/
sessions
/
reporting
/
transcripts
Batch transcript download URLs
curl --request POST \
  --url https://app.coragents.ai/api/sessions/reporting/transcripts \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "session_uuids": [
    "123e4567-e89b-12d3-a456-426614174000",
    "223e4567-e89b-12d3-a456-426614174001"
  ]
}
'
{
  "transcripts": [
    {
      "session_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "url": "<string>",
      "expires_at": "2023-11-07T05:31:56Z",
      "error": "transcript not available"
    }
  ]
}

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.

Body

application/json
session_uuids
string<uuid>[]
required

Session UUIDs to fetch transcripts for. Minimum 1, maximum 50. All must be valid UUIDs.

Required array length: 1 - 50 elements
Example:
[
"123e4567-e89b-12d3-a456-426614174000",
"223e4567-e89b-12d3-a456-426614174001"
]

Response

Per-session transcript URLs.

transcripts
object[]