GET
/
collections
/
{collection_id}
Retrieve details about a specific collection
curl --request GET \
  --url https://api.cloudglue.dev/v1/collections/{collection_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "object": "collection",
  "name": "<string>",
  "description": "<string>",
  "collection_type": "media-descriptions",
  "extract_config": {
    "prompt": "<string>",
    "schema": {},
    "enable_video_level_entities": false,
    "enable_segment_level_entities": true
  },
  "transcribe_config": {
    "enable_summary": true,
    "enable_speech": true,
    "enable_scene_text": false,
    "enable_visual_scene_description": false
  },
  "describe_config": {
    "enable_summary": true,
    "enable_speech": true,
    "enable_scene_text": true,
    "enable_visual_scene_description": true
  },
  "default_segmentation_config": {
    "strategy": "uniform",
    "uniform_config": {
      "window_seconds": 31,
      "hop_seconds": 30.5
    },
    "shot_detector_config": {
      "threshold": 1,
      "min_seconds": 31,
      "max_seconds": 31,
      "detector": "adaptive"
    },
    "start_time_seconds": 1,
    "end_time_seconds": 1
  },
  "default_thumbnails_config": {
    "enable_segment_thumbnails": true
  },
  "created_at": 123,
  "file_count": 123
}

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 to retrieve

Response

Collection details

id
string
required

Unique identifier for the collection

object
enum<string>
required

Object type, always 'collection'

Available options:
collection
name
string
required

Name of the collection

collection_type
enum<string>
required

Type of collection, determines how videos are processed and what data is extracted

Available options:
media-descriptions,
entities,
rich-transcripts
created_at
integer
required

Unix timestamp of when the collection was created

file_count
integer
required

Number of files in the collection

description
string | null

Description of the collection's purpose or contents, null if none provided

extract_config
object

Configuration for automatic entity extraction from videos. Required when collection_type is 'entities'.

transcribe_config
object

Configuration for rich transcription from videos. Used when collection_type is 'rich-transcripts'. If not provided, default values will be used.

describe_config
object

Configuration for comprehensive media description from videos. Used when collection_type is 'media-descriptions'. If not provided, default values will be used.

default_segmentation_config
object

Default segmentation configuration used for files in this collection

default_thumbnails_config
object

Default thumbnails configuration used for files in this collection