---
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

---

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