Logo

Retrieve task run information and messages

GET
/tasks/{task}/runs/{runId}
/tasks/{task}/runs/{runId}

Path Parameters

task
Required
integer

The task's unique identifier.

runId
Required
integer

The task run's unique identifier.

curl -X GET "https://example.com/tasks/0/runs/0"

Success

{
  "id": 0,
  "task_id": 0,
  "is_running": true,
  "output": "string"
}