Skip to main content
GET
/
libraries
/
{libraryId}
/
videos
/
custom
/
{customFiled}
/
{customId}
Get Video By Custom ID
curl --request GET \
  --url https://api.tenbyte.io/v1/stream/libraries/{libraryId}/videos/custom/{customFiled}/{customId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "a927290e-b0ae-4d27-a46d-50089ead2610",
    "name": "Test video updated",
    "description": "this is my description updated",
    "status": "created",
    "library_id": "0a7e7664-28fd-4d19-a715-855e14d8889f",
    "organization_id": "a7f590b4-3fd7-42a4-82bb-a7cfa6aa9d04",
    "folder_id": "1d5abf89-295c-45f0-bc21-bcb9185bb9f2",
    "metadata": {
      "note": "this is my meta data updated"
    },
    "created_at": "2025-10-20T17:31:57.400917+06:00",
    "updated_at": "2025-10-20T17:37:55.641895+06:00"
  },
  "message": "Video Fetched Successfully",
  "success": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

libraryId
string
required

Unique identifier of the library.

customFiled
string
required

Field name which will be used to get the video resource it's associated with.

customId
string
required

Field value as uuid to retrive video resource.

Response

The response is of type object.