LynCutLynCut

Publishing API

Get job

Fetch the current state of a publishing job.

GET/v1/publishing/jobs/{id}

Path & query parameters

id
stringrequired
Job id returned by create job.

Request

curl "https://api.lyncut.com/v1/publishing/jobs/job_8f2" \
  -H "x-lyncut-api-key: YOUR_API_KEY"

Response

{
  "data": {
    "id": "job_8f2",
    "status": "COMPLETED",
    "progress": 100,
    "providerUrl": "https://youtu.be/dQw4w9WgXcQ",
    "errorCode": null,
    "updatedAt": "2026-09-23T15:34:10.000Z"
  }
}

Was this page helpful?