List a video’s reel-generation jobs
Returns the video’s reel-generation jobs, newest first, each with its produced clips and their metadata (virality score, hook, timestamps, language, caption style).
Authorization
BearerAuth AuthorizationBearer <token>
Pass the raw API key as a Bearer token (Authorization: Bearer <key>). Publishable keys start with mvi_pub_ (playback-scoped). Other prefixes denote private/admin keys for general REST routes. GET /v1/embeds/{embedId}/playback accepts publishable keys only.
In: header
Path Parameters
id*string
Video identifier.
Format
uuidResponse Body
application/json
application/json
application/json
curl -X GET "https://api.moviie.ai/v1/videos/497f6eca-6276-4993-bfeb-53cbbbba6f08/reels"{
"jobs": [
{
"jobId": "9d222c6d-893e-4e79-8201-3c9ca16a0f39",
"status": "completed",
"requestedCount": 5,
"deliveredCount": 4,
"reason": "no_candidates",
"captionStyle": "hormozi",
"createdAt": "2019-08-24T14:15:22Z",
"completedAt": "2019-08-24T14:15:22Z",
"clips": [
{
"clipId": "e57fc9f6-a22c-4580-8e5f-074b5589cac3",
"viralityScore": 0.82,
"hook": "The one habit that doubled my focus",
"startSeconds": 124,
"endSeconds": 178,
"durationSeconds": 54,
"language": "pt",
"captionStyle": "hormozi",
"width": 1080,
"height": 1920,
"ordering": 0,
"thumbnailUrl": "string"
}
]
}
]
}{
"error": "Resource not found",
"code": "NOT_FOUND"
}{
"error": "Resource not found",
"code": "NOT_FOUND"
}