Get Job Status
curl --request GET \
--url https://api.cuttr.com/api/platform/v1/clip/{jobId} \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://api.cuttr.com/api/platform/v1/clip/{jobId}"
headers = {"X-API-Key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<x-api-key>'}};
fetch('https://api.cuttr.com/api/platform/v1/clip/{jobId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cuttr.com/api/platform/v1/clip/{jobId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.cuttr.com/api/platform/v1/clip/{jobId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<x-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.cuttr.com/api/platform/v1/clip/{jobId}")
.header("X-API-Key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cuttr.com/api/platform/v1/clip/{jobId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<x-api-key>'
response = http.request(request)
puts response.read_body{
"job_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "processing",
"progress": {
"completed": 1,
"total": 3
}
}
{
"job_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "completed",
"clips": [
{
"clip_id": 1234,
"status": "completed",
"title": "The Best Moment",
"heading": "YOU WON'T BELIEVE THIS",
"download_url": "https://clipster-videos-prod.s3.us-west-2.amazonaws.com/generated-clips/...",
"created_at": "2026-02-16T12:00:00.000Z"
},
{
"clip_id": 1235,
"status": "completed",
"title": "Key Insight",
"heading": "GAME CHANGING STRATEGY",
"download_url": "https://clipster-videos-prod.s3.us-west-2.amazonaws.com/generated-clips/...",
"created_at": "2026-02-16T12:00:00.000Z"
}
]
}
{
"job_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "completed",
"clips": [
{
"clip_id": 1236,
"status": "failed",
"error": "Failed to process video",
"created_at": "2026-02-16T12:00:00.000Z"
}
]
}
Endpoints
Get Job Status
Poll a clip job for progress and download links
GET
/
api
/
platform
/
v1
/
clip
/
{jobId}
Get Job Status
curl --request GET \
--url https://api.cuttr.com/api/platform/v1/clip/{jobId} \
--header 'X-API-Key: <x-api-key>'import requests
url = "https://api.cuttr.com/api/platform/v1/clip/{jobId}"
headers = {"X-API-Key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<x-api-key>'}};
fetch('https://api.cuttr.com/api/platform/v1/clip/{jobId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cuttr.com/api/platform/v1/clip/{jobId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <x-api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.cuttr.com/api/platform/v1/clip/{jobId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<x-api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.cuttr.com/api/platform/v1/clip/{jobId}")
.header("X-API-Key", "<x-api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cuttr.com/api/platform/v1/clip/{jobId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<x-api-key>'
response = http.request(request)
puts response.read_body{
"job_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "processing",
"progress": {
"completed": 1,
"total": 3
}
}
{
"job_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "completed",
"clips": [
{
"clip_id": 1234,
"status": "completed",
"title": "The Best Moment",
"heading": "YOU WON'T BELIEVE THIS",
"download_url": "https://clipster-videos-prod.s3.us-west-2.amazonaws.com/generated-clips/...",
"created_at": "2026-02-16T12:00:00.000Z"
},
{
"clip_id": 1235,
"status": "completed",
"title": "Key Insight",
"heading": "GAME CHANGING STRATEGY",
"download_url": "https://clipster-videos-prod.s3.us-west-2.amazonaws.com/generated-clips/...",
"created_at": "2026-02-16T12:00:00.000Z"
}
]
}
{
"job_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "completed",
"clips": [
{
"clip_id": 1236,
"status": "failed",
"error": "Failed to process video",
"created_at": "2026-02-16T12:00:00.000Z"
}
]
}
Check the status of a clip job. When all clips are finished, the response includes permanent download URLs for each clip.
When all clips are finished:
Headers
string
required
Your API key.
Path parameters
string
required
The
job_id (UUID) returned from Create Clip.Response
When the job is still processing:string
The job identifier (UUID).
string
"processing" while clips are being generated.object
string
The job identifier (UUID).
string
"completed" when all clips are done.object[]
Array of clip results.
Show properties
Show properties
integer
Individual clip identifier.
string
"completed" or "failed".string
AI-generated clip title (when completed).
string
AI-generated viral heading text (when
auto_heading was enabled). This text appears as a heading overlay on the clip.string
Presigned download URL (when completed). Valid for 7 days.
string
Error message (when failed).
string
ISO 8601 timestamp.
{
"job_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "processing",
"progress": {
"completed": 1,
"total": 3
}
}
{
"job_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "completed",
"clips": [
{
"clip_id": 1234,
"status": "completed",
"title": "The Best Moment",
"heading": "YOU WON'T BELIEVE THIS",
"download_url": "https://clipster-videos-prod.s3.us-west-2.amazonaws.com/generated-clips/...",
"created_at": "2026-02-16T12:00:00.000Z"
},
{
"clip_id": 1235,
"status": "completed",
"title": "Key Insight",
"heading": "GAME CHANGING STRATEGY",
"download_url": "https://clipster-videos-prod.s3.us-west-2.amazonaws.com/generated-clips/...",
"created_at": "2026-02-16T12:00:00.000Z"
}
]
}
{
"job_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"status": "completed",
"clips": [
{
"clip_id": 1236,
"status": "failed",
"error": "Failed to process video",
"created_at": "2026-02-16T12:00:00.000Z"
}
]
}
⌘I

