todos / #98
- todoListId
- todo-lists/7
- title
- Schedule the vendor
- isDone
- false
- dueDate
- 2026-06-21
- completedAt
- —
- createdAt
- updatedAt
Component variants
Medium
Schedule the vendor
#98
Small
todos/98 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/98" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/98"
);
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/98"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/98"
)
todo = res.json() {
"id": 98,
"todoListId": 7,
"title": "Schedule the vendor",
"isDone": false,
"dueDate": "2026-06-21",
"completedAt": null,
"createdAt": "2026-04-20T05:24:33.506Z",
"updatedAt": "2026-04-26T02:45:32.181Z"
}