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
header
required

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

The response is of type object[].