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
The response is of type object.
object