todos / #132
- todoListId
- todo-lists/11
- title
- Fix the client
- isDone
- true
- dueDate
- 2026-06-10
- completedAt
- createdAt
- updatedAt
Component variants
Medium
Fix the client
#132
Small
todos/132 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/132" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/132"
);
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/132"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/132"
)
todo = res.json() {
"id": 132,
"todoListId": 11,
"title": "Fix the client",
"isDone": true,
"dueDate": "2026-06-10",
"completedAt": "2026-03-02T02:35:50.269Z",
"createdAt": "2025-08-03T01:35:31.431Z",
"updatedAt": "2025-12-07T12:43:15.867Z"
}