GET
/
project
/
assets
/
video
/
curl --request GET \
  --url https://api.deepreel.com/project/assets/video/ \
  --header 'X-API-KEY: <api-key>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "title": "<string>",
    "video_status": "Pending",
    "creator": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>"
    },
    "created_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

X-API-KEY
string
headerrequired

Your API key with the prefix: dr_. This is required by all endpoints to access our API programatically. You can view your API Key by navigating to the account settings panel (In the bottom left corner click on your Accountprofile)

Query Parameters

order
enum<string>

Sort by the date of video creation (Ascending/Descending). If not provided, the resultset will be sort by newest to oldest. * created_at - Sort by ascending created at date (oldest to newest) * -created_at - Sort by decending created at date (newest to oldest)

Available options:
-created_at,
created_at

Response

200 - application/json
id
string
required

Unique Identifier of the Video.

title
string
required

Name of the Video.

video_status
enum<string>
required

Status of the video i.e. whether it's completed or failed.

  • Pending - Pending
  • Complete - Complete
  • Queued - Queued
  • Processing - Processing
  • Failed - Failed
Available options:
Pending,
Complete,
Queued,
Processing,
Failed
creator
object
required

Detail of the user who generated the video.

created_at
string
required

DateTime when the video generation was requested.