Check Render Status
Check video clip render status
curl --request GET \
--url https://api.video.dev/v1/clip/{clip_id}/render/{render_id} \
--header 'X-API-Key: <api-key>'
{
"crop": {
"enabled": false,
"aspect_ratio": "16:9",
"smart_crop": false
},
"status": "complete",
"render_id": "<string>",
"source_clip": {
"start_time_ms": 123,
"end_time_ms": 123,
"clip_id": "<string>",
"duration_ms": 123,
"source_media": {
"status": "complete",
"media_id": "<string>",
"media_url": "https://storage.xyz/media.mp4",
"media_info": {
"type": "video",
"duration_ms": 123,
"fps": 123,
"frame_count": 123,
"width": 123,
"height": 123,
"channels": 123
}
}
},
"rendered_media": {
"status": "complete",
"media_id": "<string>",
"media_url": "https://storage.xyz/media.mp4",
"media_info": {
"type": "video",
"duration_ms": 123,
"fps": 123,
"frame_count": 123,
"width": 123,
"height": 123,
"channels": 123
}
},
"webhook": {
"url": "https://system.new/webhook/v1",
"events": [
"complete"
]
}
}
Authorizations
Response
complete
, processing
, error
"complete"
Reference id to check render status
Source clip to render
Start time (milliseconds) of clip in source media
End time (milliseconds) of clip in source media
Identifier for the clip
Duration of the clip in milliseconds
Source media to create clip from
complete
, processing
, error
"complete"
Identifier for the media
video.dev hosted media url
"https://storage.xyz/media.mp4"
video
The duration of the video in milliseconds
The frame rate of the video
The number of frames in the video
The width of the video
The height of the video
The number of channels in the video
Rendered media info
complete
, processing
, error
"complete"
Identifier for the media
video.dev hosted media url
"https://storage.xyz/media.mp4"
video
The duration of the video in milliseconds
The frame rate of the video
The number of frames in the video
The width of the video
The height of the video
The number of channels in the video
Was this page helpful?
curl --request GET \
--url https://api.video.dev/v1/clip/{clip_id}/render/{render_id} \
--header 'X-API-Key: <api-key>'
{
"crop": {
"enabled": false,
"aspect_ratio": "16:9",
"smart_crop": false
},
"status": "complete",
"render_id": "<string>",
"source_clip": {
"start_time_ms": 123,
"end_time_ms": 123,
"clip_id": "<string>",
"duration_ms": 123,
"source_media": {
"status": "complete",
"media_id": "<string>",
"media_url": "https://storage.xyz/media.mp4",
"media_info": {
"type": "video",
"duration_ms": 123,
"fps": 123,
"frame_count": 123,
"width": 123,
"height": 123,
"channels": 123
}
}
},
"rendered_media": {
"status": "complete",
"media_id": "<string>",
"media_url": "https://storage.xyz/media.mp4",
"media_info": {
"type": "video",
"duration_ms": 123,
"fps": 123,
"frame_count": 123,
"width": 123,
"height": 123,
"channels": 123
}
},
"webhook": {
"url": "https://system.new/webhook/v1",
"events": [
"complete"
]
}
}