todos / #93
- todoListId
- todo-lists/7
- title
- Complete the report
- isDone
- false
- dueDate
- 2026-05-30
- completedAt
- —
- createdAt
- updatedAt
Component variants
Medium
Complete the report
#93
Small
todos/93 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/93" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/93"
);
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/93"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/93"
)
todo = res.json() {
"id": 93,
"todoListId": 7,
"title": "Complete the report",
"isDone": false,
"dueDate": "2026-05-30",
"completedAt": null,
"createdAt": "2026-01-06T20:12:45.541Z",
"updatedAt": "2026-04-04T04:15:59.917Z"
}