v1

latestOpenAPI 3.1.02026-07-1711022.5 KB

List Tasks

Get a list of all tasks for the authenticated user

get/tasks

Query parameters

pageinteger
Example:1

Page number for pagination

limitinteger
Example:30

Number of tasks per page (max: 30)

Response

Successful response

successboolean

Indicates if the request was successful

totalinteger

Total number of tasks

pageinteger

Current page number

limitinteger

Number of tasks per page

errorstring

Error message if the request failed

Example response

{
  "success": true,
  "data": [
    {
      "id": "task_123",
      "status": "active",
      "readable_name": "My Task"
    }
  ],
  "total": 1,
  "page": 1,
  "limit": 30
}