todos / #116
- todoListId
- todo-lists/9
- title
- Book the draft
- isDone
- true
- dueDate
- 2026-06-14
- completedAt
- createdAt
- updatedAt
Component variants
Medium
Book the draft
#116
Small
todos/116 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/116" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/116"
);
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/116"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/116"
)
todo = res.json() {
"id": 116,
"todoListId": 9,
"title": "Book the draft",
"isDone": true,
"dueDate": "2026-06-14",
"completedAt": "2025-09-12T23:11:02.206Z",
"createdAt": "2025-06-07T02:18:11.382Z",
"updatedAt": "2025-08-01T13:07:39.898Z"
}