todos / #71
- todoListId
- todo-lists/6
- title
- Write the dashboard
- isDone
- false
- dueDate
- 2026-06-05
- completedAt
- —
- createdAt
- updatedAt
Component variants
Medium
Write the dashboard
#71
Small
todos/71 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/71" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/71"
);
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/71"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/71"
)
todo = res.json() {
"id": 71,
"todoListId": 6,
"title": "Write the dashboard",
"isDone": false,
"dueDate": "2026-06-05",
"completedAt": null,
"createdAt": "2026-02-25T20:12:10.697Z",
"updatedAt": "2026-02-26T07:08:10.735Z"
}