GET
/
collections
/
{collection_id}
/
videos
/
{file_id}
/
rich-transcripts
curl --request GET \
  --url https://api.cloudglue.dev/v1/collections/{collection_id}/videos/{file_id}/rich-transcripts \
  --header 'Authorization: Bearer <token>'
{
  "collection_id": "<string>",
  "file_id": "<string>",
  "content": "<string>",
  "title": "<string>",
  "summary": "<string>",
  "speech": [
    {
      "text": "<string>",
      "start_time": 123,
      "end_time": 123
    }
  ],
  "visual_scene_description": [
    {
      "text": "<string>",
      "start_time": 123,
      "end_time": 123
    }
  ],
  "scene_text": [
    {
      "text": "<string>",
      "start_time": 123,
      "end_time": 123
    }
  ]
}

For details on how to create a video collection, see Create Collection

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

collection_id
string
required

The ID of the collection

file_id
string
required

The ID of the file

Query Parameters

response_format
enum<string>
default:json

Format for the response

Available options:
json,
markdown

Response

200
application/json

Rich transcription data

The response is of type object.