Skip to main content
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>'
{
  "job_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "status": "processing",
  "progress": {
    "completed": 1,
    "total": 3
  }
}
Check the status of a clip job. When all clips are finished, the response includes permanent download URLs for each clip.

Headers

X-API-Key
string
required
Your API key.

Path parameters

jobId
string
required
The job_id (UUID) returned from Create Clip.

Response

When the job is still processing:
job_id
string
The job identifier (UUID).
status
string
"processing" while clips are being generated.
progress
object
Progress information.
When all clips are finished:
job_id
string
The job identifier (UUID).
status
string
"completed" when all clips are done.
clips
object[]
Array of clip results.
{
  "job_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "status": "processing",
  "progress": {
    "completed": 1,
    "total": 3
  }
}