cURL
Python
JavaScript
PHP
Go
Java
curl --request POST \
--url https://api.video.dev/v1/auto_clips \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"source_media_id": "<string>",
"prompt": "viral clips of 20 to 30 seconds",
"webhook": {
"url": "https://system.new/webhook/v1",
"events": [
"new_clips"
]
}
}'
{
"status" : "processing" ,
"run_id" : "<string>" ,
"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"
]
}
}
Webhooks
Webhooks allow video.dev
to notify your API when results are ready.
This eliminates unnecessary requests made by polling, and can get results back faster.
Webhooks can be registered as part of the request and various events can be subscribed
to get status of .
The following is a full list of all webhook events which can be subscribed.
Event Description new_clips Occurs when a new clips are available complete Occurs when auto clip creation completes error Occurs when auto clip creation has errors
The webhook will be POST to the URL you provided with a JSON payload.
The payload will contain the event type and the details associated with the event.
use params.query to specify search query
media_id for audio/video from which clips needs to be created
(Optional) query to identify clips in the video.
Example: "viral clips of 20 to 30 seconds"
Example: "https://system.new/webhook/v1"
Available options:
new_clips
,
complete
,
error
Clip workflow initiated successfully
Available options:
complete
,
processing
,
error
Reference id to fetch clips created by auto clips
Source media to create clips from
Available options:
complete
,
processing
,
error
video.dev hosted media url
Example: "https://storage.xyz/media.mp4"
source_media.media_info. type
source_media.media_info. duration_ms
The duration of the video in milliseconds
source_media.media_info. fps
The frame rate of the video
source_media.media_info. frame_count
The number of frames in the video
source_media.media_info. width
source_media.media_info. height
source_media.media_info. channels
The number of channels in the video
Example: "https://system.new/webhook/v1"
Available options:
new_clips
,
complete
,
error