todos / #85
- todoListId
- todo-lists/6
- title
- Write the report
- isDone
- true
- dueDate
- 2026-06-17
- completedAt
- createdAt
- updatedAt
Component variants
Medium
Write the report
#85
Small
todos/85 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/85" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/85"
);
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/85"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/85"
)
todo = res.json() {
"id": 85,
"todoListId": 6,
"title": "Write the report",
"isDone": true,
"dueDate": "2026-06-17",
"completedAt": "2026-05-05T22:46:33.696Z",
"createdAt": "2026-05-03T19:42:52.684Z",
"updatedAt": "2026-05-10T21:30:23.234Z"
}