---
title: "Get a TODO item by ID"
method: GET
path: "/todos/{id}"
---

# Get a TODO item by ID

`GET /todos/{id}`

Returns a single TODO item.

## Path parameters

- `id` string, required

## Response `200`

TODO item found

- TodoItem
  - `id` string, required — Unique identifier for the TODO item
  - `title` string, required — The title of the task
  - `completed` boolean, required — Whether the task is completed
  - `dueDate` string, date-time — When the task is due

## Other responses

- `404` — TODO item not found

---

[API](https://skmtc.dev/livesession/apis/todo-api.md) · [All operations](https://skmtc.dev/livesession/apis/todo-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/livesession/todo-api/revisions/954de929f2b2/schema)
