LogoUnreal AI
API Playground/v1 API Reference/Videos/Status/Jobid

Get video generation job status

Poll the status of a video generation job and retrieve the video URL when complete.

GET
/v1/videos/status/{jobId}

Path Parameters

jobIdstring

Unique identifier for the video generation job

Formatuuid

Response Body

curl -X GET "https://openai.ideomind.org/v1/videos/status/1a4f582a-3c34-4c1b-97c6-565bd6af426f"
{
  "jobId": "9d222c6d-893e-4e79-8201-3c9ca16a0f39",
  "status": "queued",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z",
  "video": {
    "s3": "s3://openai.ideomind.org/videos/job-id/invocation-id/output.mp4",
    "url": "https://r2.openai.ideomind.org/1a4f582a-3c34-4c1b-97c6-565bd6af426f/video.mp4"
  },
  "error": "string"
}
{
  "error": "Job not found"
}
{
  "error": "Failed to retrieve job status"
}