curl -X GET "https://api.submagic.co/v1/projects/550e8400-e29b-41d4-a716-446655440000" \
-H "x-api-key: sk-your-api-key-here"
const getProject = async (projectId) => {
const response = await fetch(
`https://api.submagic.co/v1/projects/${projectId}`,
{
method: "GET",
headers: {
"x-api-key": "sk-your-api-key-here",
},
}
);
const project = await response.json();
console.log("Project status:", project.status);
return project;
};
// Usage
const project = await getProject("550e8400-e29b-41d4-a716-446655440000");
import requests
def get_project(project_id):
url = f'https://api.submagic.co/v1/projects/{project_id}'
headers = {
'x-api-key': 'sk-your-api-key-here'
}
response = requests.get(url, headers=headers)
project = response.json()
print(f"Project status: {project['status']}")
return project
# Usage
project = get_project('550e8400-e29b-41d4-a716-446655440000')
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"title": "My Awesome Video",
"description": "AI description of the project",
"language": "en",
"status": "transcribing",
"webhookUrl": "https://yoursite.com/webhook/submagic",
"templateName": "Hormozi 2",
"transcriptionStatus": "PROCESSING",
"magicZooms": true,
"magicBrolls": true,
"magicBrollsPercentage": 75,
"removeSilencePace": "fast",
"removeBadTakes": true,
"videoMetaData": {
"width": 1920,
"height": 1080,
"duration": 185.2,
"fps": 30
},
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:32:15.000Z"
}
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"title": "My Awesome Video",
"description": "AI description of the project",
"language": "en",
"status": "processing",
"webhookUrl": "https://yoursite.com/webhook/submagic",
"templateName": "Hormozi 2",
"transcriptionStatus": "COMPLETED",
"magicZooms": true,
"magicBrolls": true,
"magicBrollsPercentage": 75,
"removeSilencePace": "fast",
"removeBadTakes": true,
"videoMetaData": {
"width": 1920,
"height": 1080,
"duration": 185.2,
"fps": 30
},
"words": [
{
"id": "silence_f9164d70-ac39-41cc-ae31-5b9de3093a2f",
"text": "",
"type": "silence",
"startTime": 0,
"endTime": 0.08
},
{
"id": "w1EydrN5",
"text": "Do",
"type": "word",
"startTime": 0.08,
"endTime": 0.16
},
{
"id": "8VUdYfGN",
"text": "you",
"type": "word",
"startTime": 0.16,
"endTime": 0.24
},
{
"id": "eZBH24RB",
"text": "mind",
"type": "word",
"startTime": 0.24,
"endTime": 0.32
},
{
"id": "RFLElgda",
"text": "if",
"type": "word",
"startTime": 0.32,
"endTime": 0.4
},
{
"id": "iTWC5pc9",
"text": "we",
"type": "word",
"startTime": 0.4,
"endTime": 0.52
},
{
"id": "EpT23tSM",
"text": "do",
"type": "word",
"startTime": 0.52,
"endTime": 0.68
},
{
"id": "KtVZ8VDN",
"text": "something",
"type": "word",
"startTime": 0.68,
"endTime": 0.84
},
{
"id": "LtVZ8CM",
"text": "?",
"type": "punctuation",
"startTime": 0.84,
"endTime": 0.84
}
],
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:35:20.000Z"
}
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"title": "My Awesome Video",
"description": "AI description of the project",
"language": "en",
"status": "completed",
"webhookUrl": "https://yoursite.com/webhook/submagic",
"userThemeId": "730e9500-f29c-52e5-b826-556755550001",
"downloadUrl": "https://api.submagic.co/download/550e8400-e29b-41d4-a716-446655440000",
"directUrl": "https://dqu1p08d61fh.cloudfront.net/api/9cc52d00-43d7-442f-9a22-050312bkm24f/1ddee5b4-101f-4c1e-a74a-b6b3bcfe206c/video.mp4-download.mp4",
"previewUrl": "https://app.submagic.co/view/550e8400-e29b-41d4-a716-446655440000",
"transcriptionStatus": "COMPLETED",
"magicZooms": false,
"magicBrolls": true,
"magicBrollsPercentage": 30,
"removeSilencePace": "natural",
"removeBadTakes": false,
"cleanAudio": false,
"disableCaptions": false,
"videoMetaData": {
"fps": 30,
"isHDR": false,
"width": 1920,
"format": "AVC",
"height": 1080,
"duration": 185.2,
"fileSize": 3156305,
"hasAudio": true,
"hasVideo": true,
"audioCodec": "aac",
"colorSpace": "bt709",
"colorTransfer": "bt709",
"originalWidth": 1920,
"originalHeight": 1080,
"containerFormat": "mov,mp4,m4a,3gp,3g2,mj2"
},
"words": [
{
"id": "silence_f9164d70-ac39-41cc-ae31-5b9de3093a2f",
"text": "",
"type": "silence",
"startTime": 0,
"endTime": 0.08
},
{
"id": "w1EydrN5",
"text": "Do",
"type": "word",
"startTime": 0.08,
"endTime": 0.16
},
{
"id": "8VUdYfGN",
"text": "you",
"type": "word",
"startTime": 0.16,
"endTime": 0.24
},
{
"id": "eZBH24RB",
"text": "mind",
"type": "word",
"startTime": 0.24,
"endTime": 0.32
},
{
"id": "RFLElgda",
"text": "if",
"type": "word",
"startTime": 0.32,
"endTime": 0.4
},
{
"id": "iTWC5pc9",
"text": "we",
"type": "word",
"startTime": 0.4,
"endTime": 0.52
},
{
"id": "EpT23tSM",
"text": "do",
"type": "word",
"startTime": 0.52,
"endTime": 0.68
},
{
"id": "KtVZ8VDN",
"text": "something",
"type": "word",
"startTime": 0.68,
"endTime": 0.84
},
{
"id": "LtVZ8CM",
"text": "?",
"type": "punctuation",
"startTime": 0.84,
"endTime": 0.84
}
],
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:45:30.000Z"
}
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"title": "My Awesome Video",
"description": "AI description of the project",
"language": "en",
"status": "failed",
"webhookUrl": "https://yoursite.com/webhook/submagic",
"templateName": "Hormozi 2",
"transcriptionStatus": "FAILED",
"failureReason": "Video format not supported or file corrupted",
"magicZooms": true,
"magicBrolls": false,
"magicBrollsPercentage": 50,
"removeSilencePace": null,
"removeBadTakes": false,
"videoMetaData": {
"width": 1920,
"height": 1080,
"duration": 185.2,
"fps": 30
},
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:33:45.000Z"
}
{
"id": "e568c322-7fa5-497a-8fb0-3ba32e9e67d2",
"title": "YT magic-clips test1",
"description": "AI description of the project",
"language": "en",
"status": "completed",
"webhookUrl": "https://webhook-test.com/6704c8535a2a913c3d094aba685d6a19",
"previewUrl": "https://app.submagic.co/view/e568c322-7fa5-497a-8fb0-3ba32e9e67d3",
"transcriptionStatus": "COMPLETED",
"videoMetaData": {
"width": 1920,
"height": 1080,
"duration": 283,
"fps": 30
},
"magicClips": [
{
"id": "5c26f199-08dd-4fab-911f-5378c23cc103",
"title": "Fusion Camera Technology",
"duration": 24.8,
"viralityScores": {
"total": 87,
"shareability": 22,
"hook_strength": 21,
"story_quality": 22,
"emotional_impact": 22
},
"status": "completed",
"previewUrl": "https://app.submagic.co/view/5c26f199-08dd-4fab-911f-5378c23cc104",
"downloadUrl": "https://api.submagic.co/api/file/download?path=3c6cd7cd-3f5e-4def-b662-69c48a7fc8ce/e568c322-7fa5-497a-8fb0-3ba32e9e67d2/5c26f199-08dd-4fac-911f-5378c23cc103-download.mp4&newFileName=Fusion%20Camera%20Technology.mp4",
"directUrl": "https://dqu1p08d61fh.cloudfront.net/api/9cc52d00-43d7-442f-9a22-050312bkm24f/1ddee5b4-101f-4c1e-a74a-b6b3bcfe206c/video.mp4-download.mp4"
},
{
"id": "364fe092-b68d-468a-9558-bfca7c4d190e",
"title": "ProMotion Display Breakthrough",
"duration": 21.04,
"viralityScores": {
"total": 89,
"shareability": 23,
"hook_strength": 22,
"story_quality": 21,
"emotional_impact": 23
},
"status": "completed",
"previewUrl": "https://app.submagic.co/view/364fe092-b68d-468a-9558-bfca7c4d190g",
"downloadUrl": "https://api.submagic.co/api/file/download?path=3c6cd7cd-3f5e-4def-b662-69c48a7fc8ce/e568c322-7fa5-497a-8fb0-3ba32e9e67d2/364fe092-b68d-468a-9558-bfca7c4d189c-download.mp4&newFileName=ProMotion%20Display%20Breakthrough.mp4",
"directUrl": "https://dqu1p08d61fh.cloudfront.net/api/9cc52d00-43d7-442f-9a22-050312bkm24f/1ddee5b4-101f-4c1e-a74a-b6b3bcfe206c/video.mp4-download.mp4"
}
],
"createdAt": "2025-09-24T12:55:56.989Z",
"updatedAt": "2025-09-24T12:59:24.880Z"
}
API Reference
Get Project
Retrieve details of a specific video project including processing status and download links
GET
/
v1
/
projects
/
{id}
curl -X GET "https://api.submagic.co/v1/projects/550e8400-e29b-41d4-a716-446655440000" \
-H "x-api-key: sk-your-api-key-here"
const getProject = async (projectId) => {
const response = await fetch(
`https://api.submagic.co/v1/projects/${projectId}`,
{
method: "GET",
headers: {
"x-api-key": "sk-your-api-key-here",
},
}
);
const project = await response.json();
console.log("Project status:", project.status);
return project;
};
// Usage
const project = await getProject("550e8400-e29b-41d4-a716-446655440000");
import requests
def get_project(project_id):
url = f'https://api.submagic.co/v1/projects/{project_id}'
headers = {
'x-api-key': 'sk-your-api-key-here'
}
response = requests.get(url, headers=headers)
project = response.json()
print(f"Project status: {project['status']}")
return project
# Usage
project = get_project('550e8400-e29b-41d4-a716-446655440000')
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"title": "My Awesome Video",
"description": "AI description of the project",
"language": "en",
"status": "transcribing",
"webhookUrl": "https://yoursite.com/webhook/submagic",
"templateName": "Hormozi 2",
"transcriptionStatus": "PROCESSING",
"magicZooms": true,
"magicBrolls": true,
"magicBrollsPercentage": 75,
"removeSilencePace": "fast",
"removeBadTakes": true,
"videoMetaData": {
"width": 1920,
"height": 1080,
"duration": 185.2,
"fps": 30
},
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:32:15.000Z"
}
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"title": "My Awesome Video",
"description": "AI description of the project",
"language": "en",
"status": "processing",
"webhookUrl": "https://yoursite.com/webhook/submagic",
"templateName": "Hormozi 2",
"transcriptionStatus": "COMPLETED",
"magicZooms": true,
"magicBrolls": true,
"magicBrollsPercentage": 75,
"removeSilencePace": "fast",
"removeBadTakes": true,
"videoMetaData": {
"width": 1920,
"height": 1080,
"duration": 185.2,
"fps": 30
},
"words": [
{
"id": "silence_f9164d70-ac39-41cc-ae31-5b9de3093a2f",
"text": "",
"type": "silence",
"startTime": 0,
"endTime": 0.08
},
{
"id": "w1EydrN5",
"text": "Do",
"type": "word",
"startTime": 0.08,
"endTime": 0.16
},
{
"id": "8VUdYfGN",
"text": "you",
"type": "word",
"startTime": 0.16,
"endTime": 0.24
},
{
"id": "eZBH24RB",
"text": "mind",
"type": "word",
"startTime": 0.24,
"endTime": 0.32
},
{
"id": "RFLElgda",
"text": "if",
"type": "word",
"startTime": 0.32,
"endTime": 0.4
},
{
"id": "iTWC5pc9",
"text": "we",
"type": "word",
"startTime": 0.4,
"endTime": 0.52
},
{
"id": "EpT23tSM",
"text": "do",
"type": "word",
"startTime": 0.52,
"endTime": 0.68
},
{
"id": "KtVZ8VDN",
"text": "something",
"type": "word",
"startTime": 0.68,
"endTime": 0.84
},
{
"id": "LtVZ8CM",
"text": "?",
"type": "punctuation",
"startTime": 0.84,
"endTime": 0.84
}
],
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:35:20.000Z"
}
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"title": "My Awesome Video",
"description": "AI description of the project",
"language": "en",
"status": "completed",
"webhookUrl": "https://yoursite.com/webhook/submagic",
"userThemeId": "730e9500-f29c-52e5-b826-556755550001",
"downloadUrl": "https://api.submagic.co/download/550e8400-e29b-41d4-a716-446655440000",
"directUrl": "https://dqu1p08d61fh.cloudfront.net/api/9cc52d00-43d7-442f-9a22-050312bkm24f/1ddee5b4-101f-4c1e-a74a-b6b3bcfe206c/video.mp4-download.mp4",
"previewUrl": "https://app.submagic.co/view/550e8400-e29b-41d4-a716-446655440000",
"transcriptionStatus": "COMPLETED",
"magicZooms": false,
"magicBrolls": true,
"magicBrollsPercentage": 30,
"removeSilencePace": "natural",
"removeBadTakes": false,
"cleanAudio": false,
"disableCaptions": false,
"videoMetaData": {
"fps": 30,
"isHDR": false,
"width": 1920,
"format": "AVC",
"height": 1080,
"duration": 185.2,
"fileSize": 3156305,
"hasAudio": true,
"hasVideo": true,
"audioCodec": "aac",
"colorSpace": "bt709",
"colorTransfer": "bt709",
"originalWidth": 1920,
"originalHeight": 1080,
"containerFormat": "mov,mp4,m4a,3gp,3g2,mj2"
},
"words": [
{
"id": "silence_f9164d70-ac39-41cc-ae31-5b9de3093a2f",
"text": "",
"type": "silence",
"startTime": 0,
"endTime": 0.08
},
{
"id": "w1EydrN5",
"text": "Do",
"type": "word",
"startTime": 0.08,
"endTime": 0.16
},
{
"id": "8VUdYfGN",
"text": "you",
"type": "word",
"startTime": 0.16,
"endTime": 0.24
},
{
"id": "eZBH24RB",
"text": "mind",
"type": "word",
"startTime": 0.24,
"endTime": 0.32
},
{
"id": "RFLElgda",
"text": "if",
"type": "word",
"startTime": 0.32,
"endTime": 0.4
},
{
"id": "iTWC5pc9",
"text": "we",
"type": "word",
"startTime": 0.4,
"endTime": 0.52
},
{
"id": "EpT23tSM",
"text": "do",
"type": "word",
"startTime": 0.52,
"endTime": 0.68
},
{
"id": "KtVZ8VDN",
"text": "something",
"type": "word",
"startTime": 0.68,
"endTime": 0.84
},
{
"id": "LtVZ8CM",
"text": "?",
"type": "punctuation",
"startTime": 0.84,
"endTime": 0.84
}
],
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:45:30.000Z"
}
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"title": "My Awesome Video",
"description": "AI description of the project",
"language": "en",
"status": "failed",
"webhookUrl": "https://yoursite.com/webhook/submagic",
"templateName": "Hormozi 2",
"transcriptionStatus": "FAILED",
"failureReason": "Video format not supported or file corrupted",
"magicZooms": true,
"magicBrolls": false,
"magicBrollsPercentage": 50,
"removeSilencePace": null,
"removeBadTakes": false,
"videoMetaData": {
"width": 1920,
"height": 1080,
"duration": 185.2,
"fps": 30
},
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:33:45.000Z"
}
{
"id": "e568c322-7fa5-497a-8fb0-3ba32e9e67d2",
"title": "YT magic-clips test1",
"description": "AI description of the project",
"language": "en",
"status": "completed",
"webhookUrl": "https://webhook-test.com/6704c8535a2a913c3d094aba685d6a19",
"previewUrl": "https://app.submagic.co/view/e568c322-7fa5-497a-8fb0-3ba32e9e67d3",
"transcriptionStatus": "COMPLETED",
"videoMetaData": {
"width": 1920,
"height": 1080,
"duration": 283,
"fps": 30
},
"magicClips": [
{
"id": "5c26f199-08dd-4fab-911f-5378c23cc103",
"title": "Fusion Camera Technology",
"duration": 24.8,
"viralityScores": {
"total": 87,
"shareability": 22,
"hook_strength": 21,
"story_quality": 22,
"emotional_impact": 22
},
"status": "completed",
"previewUrl": "https://app.submagic.co/view/5c26f199-08dd-4fab-911f-5378c23cc104",
"downloadUrl": "https://api.submagic.co/api/file/download?path=3c6cd7cd-3f5e-4def-b662-69c48a7fc8ce/e568c322-7fa5-497a-8fb0-3ba32e9e67d2/5c26f199-08dd-4fac-911f-5378c23cc103-download.mp4&newFileName=Fusion%20Camera%20Technology.mp4",
"directUrl": "https://dqu1p08d61fh.cloudfront.net/api/9cc52d00-43d7-442f-9a22-050312bkm24f/1ddee5b4-101f-4c1e-a74a-b6b3bcfe206c/video.mp4-download.mp4"
},
{
"id": "364fe092-b68d-468a-9558-bfca7c4d190e",
"title": "ProMotion Display Breakthrough",
"duration": 21.04,
"viralityScores": {
"total": 89,
"shareability": 23,
"hook_strength": 22,
"story_quality": 21,
"emotional_impact": 23
},
"status": "completed",
"previewUrl": "https://app.submagic.co/view/364fe092-b68d-468a-9558-bfca7c4d190g",
"downloadUrl": "https://api.submagic.co/api/file/download?path=3c6cd7cd-3f5e-4def-b662-69c48a7fc8ce/e568c322-7fa5-497a-8fb0-3ba32e9e67d2/364fe092-b68d-468a-9558-bfca7c4d189c-download.mp4&newFileName=ProMotion%20Display%20Breakthrough.mp4",
"directUrl": "https://dqu1p08d61fh.cloudfront.net/api/9cc52d00-43d7-442f-9a22-050312bkm24f/1ddee5b4-101f-4c1e-a74a-b6b3bcfe206c/video.mp4-download.mp4"
}
],
"createdAt": "2025-09-24T12:55:56.989Z",
"updatedAt": "2025-09-24T12:59:24.880Z"
}
Get Project
Retrieve detailed information about a specific video project, including its current processing status, metadata, and download links when available.This endpoint requires authentication and has a rate limit of 100 requests per
hour.
Authentication
string
required
Your Submagic API key starting with
sk-Path Parameters
string
required
The unique identifier (UUID) of the project to retrieve
Response
string
Unique identifier of the project (UUID format)
string
The title of the project
string
AI description of the project
string
Language code used for transcription
string
Current processing status:
processing, transcribing, exporting,
completed, or failedstring
Webhook URL if provided in the request
string
Template name applied to the project (if using a built-in template)
string
User theme ID applied to the project (if using a custom theme)
string
Preset ID applied to the project (if using a preset)
string
AI edit template applied to the project (if any):
kelly, karl, or ellastring
Direct download URL for the processed video (available when status is
completed)string
Direct URL that can be embedded on your website or used to play the video
directly (available when status is
completed)string
User-friendly preview page URL where the exported project can be previewed or
downloaded:
https://app.submagic.co/view/{projectId} (available when status
is completed)string
Current transcription status:
PROCESSING, COMPLETED, or FAILEDstring
Reason for failure if status is
failedboolean
Whether automatic zoom effects are enabled for the video
boolean
Whether automatic B-roll insertion is enabled for the video
number
Percentage of automatic B-rolls to include in the video (0-100)
string
Pace setting for automatic silence removal:
natural, fast, or extra-fastboolean
Whether automatic bad takes and silence removal is enabled
boolean
Whether automatic audio cleanup (noise removal) is enabled
boolean
Whether captions are disabled for the video
object
Video metadata extracted from the source
Hide Video Metadata
Hide Video Metadata
number
Video width in pixels (after any processing)
number
Video height in pixels (after any processing)
number
Original source video width in pixels
number
Original source video height in pixels
number
Video duration in seconds
number
Frames per second
number
Source file size in bytes
string
Video codec/format (e.g.
AVC)string
Container format(s) of the source file (e.g.
mov,mp4,m4a,3gp,3g2,mj2)string
Audio codec (e.g.
aac)boolean
Whether the source contains a video stream
boolean
Whether the source contains an audio stream
boolean
Whether the source video is HDR
string
Color space of the video (e.g.
bt709)string
Color transfer characteristics of the video (e.g.
bt709)string
ISO 8601 timestamp when the project was created
string
ISO 8601 timestamp when the project was last updated
array
Array of transcribed words and silence segments with timing information (available when transcription is completed)
Hide Word Object
Hide Word Object
string
Unique identifier for the word or silence segment
string
The transcribed text content (empty string for silence segments)
string
Type of segment:
word for spoken words, silence for silent periods, or punctuation for punctuation marksnumber
Start time of the word/silence in seconds
number
End time of the word/silence in seconds
array
Array of generated Magic Clips (only present for Magic Clips projects)
Hide Magic Clip Object
Hide Magic Clip Object
string
Unique identifier for the Magic Clip (UUID format)
string
AI-generated title for the clip
number
Duration of the clip in seconds
object
string
Processing status of the clip:
processing, completed, or failedstring
URL to preview the Magic Clip (available when status is
completed)string
Direct download URL for the Magic Clip (available when status is
completed)string
Direct URL that can be embedded on your website or used to play the Magic Clip directly (available when status is
completed)curl -X GET "https://api.submagic.co/v1/projects/550e8400-e29b-41d4-a716-446655440000" \
-H "x-api-key: sk-your-api-key-here"
const getProject = async (projectId) => {
const response = await fetch(
`https://api.submagic.co/v1/projects/${projectId}`,
{
method: "GET",
headers: {
"x-api-key": "sk-your-api-key-here",
},
}
);
const project = await response.json();
console.log("Project status:", project.status);
return project;
};
// Usage
const project = await getProject("550e8400-e29b-41d4-a716-446655440000");
import requests
def get_project(project_id):
url = f'https://api.submagic.co/v1/projects/{project_id}'
headers = {
'x-api-key': 'sk-your-api-key-here'
}
response = requests.get(url, headers=headers)
project = response.json()
print(f"Project status: {project['status']}")
return project
# Usage
project = get_project('550e8400-e29b-41d4-a716-446655440000')
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"title": "My Awesome Video",
"description": "AI description of the project",
"language": "en",
"status": "transcribing",
"webhookUrl": "https://yoursite.com/webhook/submagic",
"templateName": "Hormozi 2",
"transcriptionStatus": "PROCESSING",
"magicZooms": true,
"magicBrolls": true,
"magicBrollsPercentage": 75,
"removeSilencePace": "fast",
"removeBadTakes": true,
"videoMetaData": {
"width": 1920,
"height": 1080,
"duration": 185.2,
"fps": 30
},
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:32:15.000Z"
}
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"title": "My Awesome Video",
"description": "AI description of the project",
"language": "en",
"status": "processing",
"webhookUrl": "https://yoursite.com/webhook/submagic",
"templateName": "Hormozi 2",
"transcriptionStatus": "COMPLETED",
"magicZooms": true,
"magicBrolls": true,
"magicBrollsPercentage": 75,
"removeSilencePace": "fast",
"removeBadTakes": true,
"videoMetaData": {
"width": 1920,
"height": 1080,
"duration": 185.2,
"fps": 30
},
"words": [
{
"id": "silence_f9164d70-ac39-41cc-ae31-5b9de3093a2f",
"text": "",
"type": "silence",
"startTime": 0,
"endTime": 0.08
},
{
"id": "w1EydrN5",
"text": "Do",
"type": "word",
"startTime": 0.08,
"endTime": 0.16
},
{
"id": "8VUdYfGN",
"text": "you",
"type": "word",
"startTime": 0.16,
"endTime": 0.24
},
{
"id": "eZBH24RB",
"text": "mind",
"type": "word",
"startTime": 0.24,
"endTime": 0.32
},
{
"id": "RFLElgda",
"text": "if",
"type": "word",
"startTime": 0.32,
"endTime": 0.4
},
{
"id": "iTWC5pc9",
"text": "we",
"type": "word",
"startTime": 0.4,
"endTime": 0.52
},
{
"id": "EpT23tSM",
"text": "do",
"type": "word",
"startTime": 0.52,
"endTime": 0.68
},
{
"id": "KtVZ8VDN",
"text": "something",
"type": "word",
"startTime": 0.68,
"endTime": 0.84
},
{
"id": "LtVZ8CM",
"text": "?",
"type": "punctuation",
"startTime": 0.84,
"endTime": 0.84
}
],
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:35:20.000Z"
}
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"title": "My Awesome Video",
"description": "AI description of the project",
"language": "en",
"status": "completed",
"webhookUrl": "https://yoursite.com/webhook/submagic",
"userThemeId": "730e9500-f29c-52e5-b826-556755550001",
"downloadUrl": "https://api.submagic.co/download/550e8400-e29b-41d4-a716-446655440000",
"directUrl": "https://dqu1p08d61fh.cloudfront.net/api/9cc52d00-43d7-442f-9a22-050312bkm24f/1ddee5b4-101f-4c1e-a74a-b6b3bcfe206c/video.mp4-download.mp4",
"previewUrl": "https://app.submagic.co/view/550e8400-e29b-41d4-a716-446655440000",
"transcriptionStatus": "COMPLETED",
"magicZooms": false,
"magicBrolls": true,
"magicBrollsPercentage": 30,
"removeSilencePace": "natural",
"removeBadTakes": false,
"cleanAudio": false,
"disableCaptions": false,
"videoMetaData": {
"fps": 30,
"isHDR": false,
"width": 1920,
"format": "AVC",
"height": 1080,
"duration": 185.2,
"fileSize": 3156305,
"hasAudio": true,
"hasVideo": true,
"audioCodec": "aac",
"colorSpace": "bt709",
"colorTransfer": "bt709",
"originalWidth": 1920,
"originalHeight": 1080,
"containerFormat": "mov,mp4,m4a,3gp,3g2,mj2"
},
"words": [
{
"id": "silence_f9164d70-ac39-41cc-ae31-5b9de3093a2f",
"text": "",
"type": "silence",
"startTime": 0,
"endTime": 0.08
},
{
"id": "w1EydrN5",
"text": "Do",
"type": "word",
"startTime": 0.08,
"endTime": 0.16
},
{
"id": "8VUdYfGN",
"text": "you",
"type": "word",
"startTime": 0.16,
"endTime": 0.24
},
{
"id": "eZBH24RB",
"text": "mind",
"type": "word",
"startTime": 0.24,
"endTime": 0.32
},
{
"id": "RFLElgda",
"text": "if",
"type": "word",
"startTime": 0.32,
"endTime": 0.4
},
{
"id": "iTWC5pc9",
"text": "we",
"type": "word",
"startTime": 0.4,
"endTime": 0.52
},
{
"id": "EpT23tSM",
"text": "do",
"type": "word",
"startTime": 0.52,
"endTime": 0.68
},
{
"id": "KtVZ8VDN",
"text": "something",
"type": "word",
"startTime": 0.68,
"endTime": 0.84
},
{
"id": "LtVZ8CM",
"text": "?",
"type": "punctuation",
"startTime": 0.84,
"endTime": 0.84
}
],
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:45:30.000Z"
}
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"title": "My Awesome Video",
"description": "AI description of the project",
"language": "en",
"status": "failed",
"webhookUrl": "https://yoursite.com/webhook/submagic",
"templateName": "Hormozi 2",
"transcriptionStatus": "FAILED",
"failureReason": "Video format not supported or file corrupted",
"magicZooms": true,
"magicBrolls": false,
"magicBrollsPercentage": 50,
"removeSilencePace": null,
"removeBadTakes": false,
"videoMetaData": {
"width": 1920,
"height": 1080,
"duration": 185.2,
"fps": 30
},
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:33:45.000Z"
}
{
"id": "e568c322-7fa5-497a-8fb0-3ba32e9e67d2",
"title": "YT magic-clips test1",
"description": "AI description of the project",
"language": "en",
"status": "completed",
"webhookUrl": "https://webhook-test.com/6704c8535a2a913c3d094aba685d6a19",
"previewUrl": "https://app.submagic.co/view/e568c322-7fa5-497a-8fb0-3ba32e9e67d3",
"transcriptionStatus": "COMPLETED",
"videoMetaData": {
"width": 1920,
"height": 1080,
"duration": 283,
"fps": 30
},
"magicClips": [
{
"id": "5c26f199-08dd-4fab-911f-5378c23cc103",
"title": "Fusion Camera Technology",
"duration": 24.8,
"viralityScores": {
"total": 87,
"shareability": 22,
"hook_strength": 21,
"story_quality": 22,
"emotional_impact": 22
},
"status": "completed",
"previewUrl": "https://app.submagic.co/view/5c26f199-08dd-4fab-911f-5378c23cc104",
"downloadUrl": "https://api.submagic.co/api/file/download?path=3c6cd7cd-3f5e-4def-b662-69c48a7fc8ce/e568c322-7fa5-497a-8fb0-3ba32e9e67d2/5c26f199-08dd-4fac-911f-5378c23cc103-download.mp4&newFileName=Fusion%20Camera%20Technology.mp4",
"directUrl": "https://dqu1p08d61fh.cloudfront.net/api/9cc52d00-43d7-442f-9a22-050312bkm24f/1ddee5b4-101f-4c1e-a74a-b6b3bcfe206c/video.mp4-download.mp4"
},
{
"id": "364fe092-b68d-468a-9558-bfca7c4d190e",
"title": "ProMotion Display Breakthrough",
"duration": 21.04,
"viralityScores": {
"total": 89,
"shareability": 23,
"hook_strength": 22,
"story_quality": 21,
"emotional_impact": 23
},
"status": "completed",
"previewUrl": "https://app.submagic.co/view/364fe092-b68d-468a-9558-bfca7c4d190g",
"downloadUrl": "https://api.submagic.co/api/file/download?path=3c6cd7cd-3f5e-4def-b662-69c48a7fc8ce/e568c322-7fa5-497a-8fb0-3ba32e9e67d2/364fe092-b68d-468a-9558-bfca7c4d189c-download.mp4&newFileName=ProMotion%20Display%20Breakthrough.mp4",
"directUrl": "https://dqu1p08d61fh.cloudfront.net/api/9cc52d00-43d7-442f-9a22-050312bkm24f/1ddee5b4-101f-4c1e-a74a-b6b3bcfe206c/video.mp4-download.mp4"
}
],
"createdAt": "2025-09-24T12:55:56.989Z",
"updatedAt": "2025-09-24T12:59:24.880Z"
}
⌘I

