GET
/
pipelines
/
status
/
{task_id}
curl --location 'https://api.mixpeek.com/pipelines/status/{task_id}' \
--header 'Authorization: Bearer API_KEY'
{
  "status": "<string>",
  "details": {}
}

Request

task_id
string
required

The unique identifier of the task whose status you wish to query. This ID is provided when a pipeline is invoked and is essential for retrieving the specific task’s current status.

Response

status
string
required

The current status of the task, which could be ‘processing’, ‘completed’, ‘failed’, or any other state defined by the pipeline’s execution logic.

details
object

Additional details about the task’s execution status. This object may include information such as progress metrics, error messages, or any output generated by the task.