POST
/
api
/
videos
/
Manually upload videos
curl --request POST \
  --url https://backend.tensorpix.ai/api/videos/ \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: multipart/form-data' \
  --form 'file=<string>'
{
  "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"

Body

multipart/form-data

Response

201
application/json

The response is of type object.