Skip to main content
GET
/
video
/
{video_id}
/
reframe
/
{reframe_id}
Get reframe job status
curl --request GET \
  --url https://api.videodb.io/video/{video_id}/reframe/{reframe_id} \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "status": "done",
  "data": {}
}
Check the status of an ongoing reframe job. Returns the current status and result data when complete.
  • Status values: processing, done, failed
  • Poll this endpoint to track progress, or use callback_url when starting the reframe job
  • When status is done, the response includes the reframed video data

Authorizations

x-access-token
string
header
required

API key for authentication (sk-xxx format)

Path Parameters

video_id
string
required
Example:

"m-12345"

reframe_id
string
required
Example:

"reframe-12345"

Response

Reframe job status

success
boolean
Example:

true

status
enum<string>
Available options:
processing,
done,
failed
Example:

"done"

data
object