GET
/
collections
/
{collection_id}
/
videos
/
{file_id}
/
entities
curl --request GET \
  --url https://api.cloudglue.dev/v1/collections/{collection_id}/videos/{file_id}/entities \
  --header 'Authorization: Bearer <token>'
{
  "collection_id": "<string>",
  "file_id": "<string>",
  "entities": {},
  "segment_entities": [
    {
      "start_time": 123,
      "end_time": 123,
      "entities": {}
    }
  ]
}

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

Response

200
application/json

File entities

collection_id
string
required

ID of the collection

file_id
string
required

ID of the file

entities
object
required

Entities extracted from the file at the video level

segment_entities
object[]

Array of video entities extracted from individual time segments