todos / #154
- todoListId
- todo-lists/13
- title
- Book the dashboard
- isDone
- true
- dueDate
- 2026-06-08
- completedAt
- createdAt
- updatedAt
Component variants
Medium
Book the dashboard
#154
Small
todos/154 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/154" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/154"
);
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/154"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/154"
)
todo = res.json() {
"id": 154,
"todoListId": 13,
"title": "Book the dashboard",
"isDone": true,
"dueDate": "2026-06-08",
"completedAt": "2026-05-19T18:38:56.652Z",
"createdAt": "2026-05-14T18:03:51.428Z",
"updatedAt": "2026-05-17T11:56:19.466Z"
}