curl --request GET \ --url 'http://localhost:2003/api/v1/tasks?page=1&limit=30' \ --header 'x-api-key: <your-api-key>'
{ "success": true, "data": [ { "id": "task_123", "status": "active", "readable_name": "My Task" } ], "total": 1, "page": 1, "limit": 30 }
Get a list of all tasks for the authenticated user
Page number for pagination
1
Number of tasks per page (max: 30)
x <= 30
30
Successful response
Indicates if the request was successful
true
Array of task objects
Show child attributes
Total number of tasks
Current page number
Number of tasks per page
Error message if the request failed