todos / #96
- todoListId
- todo-lists/7
- title
- Email the checklist
- isDone
- false
- dueDate
- 2026-05-26
- completedAt
- —
- createdAt
- updatedAt
Component variants
Medium
Email the checklist
#96
Small
todos/96 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/96" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/96"
);
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/96"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/96"
)
todo = res.json() {
"id": 96,
"todoListId": 7,
"title": "Email the checklist",
"isDone": false,
"dueDate": "2026-05-26",
"completedAt": null,
"createdAt": "2025-12-05T15:59:48.201Z",
"updatedAt": "2026-05-17T05:57:49.233Z"
}