GET
/
api
/
restored-videos
/
List enhanced videos
curl --request GET \
  --url https://backend.tensorpix.ai/api/restored-videos/ \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100",
  "results": [
    {
      "id": 123,
      "job_id": 123,
      "preview_videos": {
        "before_video": "<string>",
        "after_video": "<string>"
      },
      "name": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "deleted": "2023-11-07T05:31:56Z",
      "framerate": 500,
      "n_frames": 1073741824,
      "bitrate": 4611686018427388000,
      "codec_id": "<string>",
      "bit_depth": 15,
      "chroma_subsampling": "<string>",
      "color_space": "<string>",
      "size": 200000000050,
      "file": "<string>",
      "thumbnail": "<string>",
      "width": 4128,
      "height": 4128,
      "quality_score": 3,
      "owner": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Query Parameters

limit
integer

Number of results to return per page.

offset
integer

The initial index from which to return the results.

Response

200
application/json

The response is of type object.