GET
/
api
/
videos
/
{id}
/
Get uploaded video
curl --request GET \
  --url https://backend.tensorpix.ai/api/videos/{id}/ \
  --header 'Authorization: <api-key>'
{
  "id": 123,
  "name": "<string>",
  "width": 123,
  "height": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "n_frames": 123,
  "framerate": 123,
  "size": 123,
  "file": "<string>",
  "owner": "[email protected]",
  "thumbnail": "<string>",
  "external_url": "<string>",
  "bitrate": 123,
  "codec_id": "<string>",
  "bit_depth": 123,
  "chroma_subsampling": "<string>",
  "color_space": "<string>"
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Path Parameters

id
integer
required

Response

200
application/json

The response is of type object.