todos / #207
- todoListId
- todo-lists/16
- title
- Review the report
- isDone
- false
- dueDate
- 2026-05-25
- completedAt
- —
- createdAt
- updatedAt
Component variants
Medium
Review the report
#207
Small
todos/207 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/207" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/207"
);
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/207"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/207"
)
todo = res.json() {
"id": 207,
"todoListId": 16,
"title": "Review the report",
"isDone": false,
"dueDate": "2026-05-25",
"completedAt": null,
"createdAt": "2025-08-07T13:24:40.678Z",
"updatedAt": "2025-10-03T06:59:55.953Z"
}