GET
/
task
/
{taskId}
/
runs
curl --request GET \
  --url 'http://localhost:2003/api/v1/task/task_123/runs?page=1&limit=30' \
  --header 'x-api-key: <your-api-key>'
{
  "success": true,
  "data": [
    {
      "id": "run_456",
      "created_at": "2024-03-20T15:30:00Z"
    }
  ],
  "total": 1,
  "page": 1,
  "limit": 30
}
curl --request GET \
  --url 'http://localhost:2003/api/v1/task/task_123/runs?page=1&limit=30' \
  --header 'x-api-key: <your-api-key>'
{
  "success": true,
  "data": [
    {
      "id": "run_456",
      "created_at": "2024-03-20T15:30:00Z"
    }
  ],
  "total": 1,
  "page": 1,
  "limit": 30
}

Authorizations

x-api-key
string
header
required

Path Parameters

taskId
string
required

The ID of the task

Query Parameters

page
integer
default:1

Page number for pagination

limit
integer
default:30

Number of runs per page (max: 30)

Required range: x <= 30

Response

200 - application/json
Successful response
success
boolean
data
object[]
total
integer
page
integer
limit
integer
error
string

Error message if the request failed