Clips
Get Auto Clips
Get clips created by auto clip API
GET
/
auto_clips
/
{run_id}
Copy
curl --request GET \
--url https://api.video.dev/v1/auto_clips/{run_id} \
--header 'X-API-Key: <api-key>'
Copy
{
"status": "complete",
"run_id": "<string>",
"clips": [
{
"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
}
}
}
],
"webhook": {
"url": "https://system.new/webhook/v1",
"events": [
"new_clips"
]
}
}
Authorizations
Path Parameters
Reference id received from Create Auto Clip API
Response
200
application/json
Auto Clips
The response is of type object
.
Was this page helpful?
Copy
curl --request GET \
--url https://api.video.dev/v1/auto_clips/{run_id} \
--header 'X-API-Key: <api-key>'
Copy
{
"status": "complete",
"run_id": "<string>",
"clips": [
{
"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
}
}
}
],
"webhook": {
"url": "https://system.new/webhook/v1",
"events": [
"new_clips"
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.