Skip to content

GET/todos

List all todos

Paginated list of todos. Supports filtering, range operators (`_gte`, `_lte`, `_gt`, `_lt`, `_ne`, `_like`), full-text search, sorting, field selection, and relation expansion.

Parameters 12

NameTypeDescription
_pagequery · integerPage number (1-based)
_limitquery · integerItems per page
_startquery · integerSlice start index (alternative to page-based)

ReturnsTodo

Bearer token required

Response examples

200Paginated array of todos

application/json example derived from schema

[
  {
    "id": 1,
    "userId": 1,
    "title": "Configure monitoring",
    "completed": true,
    "priority": "low",
    "dueDate": null,
    "tags": [],
    "createdAt": "2024-01-25T00:38:32.919Z"
  }
]
429429 — rate limit exceeded (120/60s)

application/json

{
  "error": {
    "status": 429,
    "message": "Too many requests",
    "details": {
      "retryAfter": 45
    }
  }
}

Released under the MIT License.