Skip to main content
GET
/
v1
/
videos
/
{id}
Get video status and playback details
curl --request GET \
  --url https://api.myeden.me/v1/videos/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "is_available": true,
  "title": "<string>",
  "summary": "<string>",
  "tags": [
    "<string>"
  ],
  "duration_seconds": 123,
  "thumbnail_url": "<string>",
  "playback": {
    "playback_id": "<string>",
    "hls_url": "<string>"
  },
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://developers.myeden.me/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Send your API key as a Bearer token:

Authorization: Bearer eden_live_xxxxxxxxxxxxxxxxxxxxxxxx_yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy

Path Parameters

id
string
required
Example:

"vid_a7Kp9mNqR2vXyB4dH6jL8s"

Response

Video details

id
string
status
enum<string>
Available options:
processing,
ready,
archived,
deleted
is_available
boolean
title
string
summary
string | null

Partner-supplied summary if provided at ingest, otherwise null.

tags
string[]
duration_seconds
number | null
thumbnail_url
string | null

Partner-supplied thumbnail if provided at ingest, otherwise the Mux-generated auto-thumbnail. Null until processing completes.

playback
object
created_at
string<date-time>
updated_at
string<date-time>