GET
/
collections
/
{collection_id}
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": "entities",
  "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
  },
  "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

200
application/json

Collection details

The response is of type object.