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 }
Get a list of all runs for a specific task
The ID of the task
Page number for pagination
Number of runs per page (max: 30)
x <= 30
Successful response
The response is of type object.
object