todos / #223
- todoListId
- todo-lists/18
- title
- Review the timeline
- isDone
- false
- dueDate
- 2026-06-09
- completedAt
- —
- createdAt
- updatedAt
Component variants
Medium
Review the timeline
#223
Small
todos/223 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/223" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/223"
);
const todo = await res.json();import type { Todo } from "https://example-data.com/types/todos.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/todos/223"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/223"
)
todo = res.json() {
"id": 223,
"todoListId": 18,
"title": "Review the timeline",
"isDone": false,
"dueDate": "2026-06-09",
"completedAt": null,
"createdAt": "2026-03-29T21:56:08.138Z",
"updatedAt": "2026-04-16T04:49:15.885Z"
}