---
title: "Get todo item"
method: GET
path: "/v1/todos"
tags: ["Todo"]
---

# Get todo item

`GET /v1/todos`

Returns all todo items belonging to the current user.

## Query parameters

- `page_size` integer
- `page_token` string
- `completed` boolean

## Response `200`

OK

- TodoPage
  - `items` Todo[], required
    - `id` string, required — Unique identifier of the todo.
    - `title` string, required — Title of the todo item.
    - `description` string, required — Description of the todo item.
    - `priority` 'normal' | 'important' | 'urgent' | 'critical', required — Priority of the todo item.
    - `completed` boolean, required — Status of the todo item.
    - `owned_by` string, required — ID of the user who owns the todo item.
    - `created_by` string, required — ID of the user who created the todo item.
    - `due_date` string, date-time, nullable, required — Completion due date of the todo item.
    - `created_at` string, date-time, required — Date when the todo item was created.
    - `updated_at` string, date-time, nullable, required — Date when the todo item was updated.
  - `page_info` PageInfo, required — Cursor pagination metadata for a page of results.
    - `next_page_token` string, nullable — Opaque token for the next page. Omitted when has_more is false.
    - `has_more` boolean, required — Whether more results are available.
    - `total_count` integer, nullable — Optional total count when requested by the server.

## Other responses

- `400` — Bad request
- `401` — Unauthorized request
- `403` — Forbidden
- `404` — The requested resource not found
- `500` — Internal Server Error

## Changes

- **2026-08-16** `6965ecf3ab92` — 1 breaking, 2 warning, 5 info
  - the response's body type/format changed from `array`/`` to `object`/`` for status `200`
  - deleted the `query` request parameter `limit`
  - deleted the `query` request parameter `offset`
  - added the new optional `query` request parameter `page_size`
  - …4 more
- **2023-06-14** `1057260fde29` — 2 info
  - api tag `Todo` added
  - api tag `Todos` removed
- **2023-05-24** `11f0e17a96b4` — 1 info
  - endpoint added
- **2023-03-18** `f157ff402bc1` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/opcotech/apis/elemo-api/changes/v1/todos/get.md)

---

[API](https://skmtc.dev/opcotech/apis/elemo-api.md) · [All operations](https://skmtc.dev/opcotech/apis/elemo-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/opcotech/elemo-api/revisions/836ecb425096/schema)
