GET

/batch/:id

Retrieves the real-time status and progress of a specific batch.


Path Parameters

id Required

The unique identifier of the batch (returned upon creation).

Response

200 OK
{
  "id": "batch_123456789",
  "status": "processing",
  "progress": 45.5,
  "jobs": [
    {
      "id": "job_1",
      "file_name": "video1.mp4",
      "status": "done",
      "output_url": "blob:..."
    },
    {
      "id": "job_2",
      "file_name": "video2.mov",
      "status": "processing",
      "progress": 12
    }
  ]
}