GET
/
v1
/
videos
/
{id}
Get video status
curl --request GET \
  --url https://api.getbluma.com/api/v1/videos/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "status": "queued",
  "progress": 50,
  "template_id": "<string>",
  "url": "<string>",
  "thumbnail_url": "<string>",
  "duration": 123,
  "size_bytes": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "completed_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Use your API key in the format: Bearer bluma_live_your_api_key_here

Response

Video details

id
string
status
enum<string>
Available options:
queued,
processing,
completed,
failed
progress
number
Required range: 0 <= x <= 100
template_id
string
url
string | null
thumbnail_url
string | null
duration
number | null
size_bytes
number | null
created_at
string<date-time>
completed_at
string<date-time> | null