Skip to main content
GET
/
api
/
tasks
/
{task_id}
/
runs
Get Runs For Task
curl --request GET \
  --url https://api.example.com/api/tasks/{task_id}/runs
[
  {
    "id": 123,
    "description": "<string>",
    "is_done": true,
    "is_successful": true
  }
]

Path Parameters

task_id
integer
required

Response

Successful Response

id
integer
required

Task run ID

description
string
required

Task run description (prompt)

is_done
boolean
required

Whether the task run is completed

is_successful
boolean | null

Whether the task run was successful