---
title: "Gets a Todo item by unique identifier"
method: GET
path: "/lists/{listId}/items/{itemId}"
tags: ["Items"]
---

# Gets a Todo item by unique identifier

`GET /lists/{listId}/items/{itemId}`

## Path parameters

- `listId` string, required
- `itemId` string, required

## Response `200`

A Todo item result

- TodoItem — A task that needs to be completed
  - `id` string
  - `listId` string, required
  - `name` string, required
  - `description` string, required
  - `state` 'todo' | 'inprogress' | 'done'
  - `dueDate` string, date-time
  - `completedDate` string, date-time

## Other responses

- `404` — Todo list or item not found

---

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