get
https://api.autoreelapp.com/api/v1/get_video/
Retrieve the status and details of a video using its UUID.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Authentication
Authorization: <YOUR_API_KEY>
Path Parameter
| Parameter | Type | Required | Description |
|---|---|---|---|
video_uuid | string | Yes | UUID of the video you created |
Response
| Field | Type | Description |
|---|---|---|
uuid | string | Unique ID of the video |
project | string | UUID of the project this video belongs to. |
status | string | One of: queued, in_progress, complete, error |
video_url | string | Final stitched video URL |
orientation | string | landscape or portrait |
resolution | string | 720p or 1080p |
ai_engine | string | v24 or v25 |
video_clips | array of VideoClip[] | List of individual clips per video |
branding | object | Present only if branding was requested when the video was created. Tracks the separate branded render - see Branding object below. |
Example response
{
"uuid": "9734b67c-54c6-454d-8874-120063af4a07",
"project": "b1f2c3d4-5678-4abc-9def-0123456789ab",
"status": "queued",
"video_url": "",
"video_clips": [],
"resolution": "720p",
"orientation": "landscape",
"ai_engine": "v25",
"branding": {
"status": "queued",
"video_url": "",
"templates": {
"intro": {
"template": "gold-frame",
"config": {
"title": { "value": "Just Listed" },
"subtitle": { "value": "$650,000" }
}
},
"outro": {
"template": "classic",
"config": {
"outro_text": { "value": "Jane Doe\n(415) 555-0137" },
"brand_logo": { "url": "https://example.com/logo.png" }
}
}
}
}
}
VideoClip object
| Field | Type | Description |
|---|---|---|
uuid | string | UUID of the video clip |
clip_url | string | URL of the generated video clip |
image_url | string | URL of the source image for that clip |
camera_motion | string | push-in, push-out, orbit-left, orbit-right, auto |
orientation | string | landscape or portrait |
resolution | string | 720p or 1080p |
ai_engine | string | v24 or v25 |
vfx | object|null | The VFX applied to that clip, e.g. {"type": "word-drop", "config": {"text": "FOR SALE", "color": "gold"}}, or null if none |
Branding
| Field | Type | Description |
|---|---|---|
status | string | Status of the branded render. One of queued, in_progress, complete, or error. This is independent of the top-level video status. |
video_url | string | URL of the branded video. Empty until status is complete. The branded render typically finishes a few minutes after the top-level video_url is available. Poll this same GET /get_video endpoint to retrieve the updated URL. |
templates | object | Echoes the intro/outro template configuration provided when the video was created. |
404Video not found or not owned by user
