todos / #216
- todoListId
- todo-lists/18
- title
- Finish the vendor
- isDone
- true
- dueDate
- —
- completedAt
- createdAt
- updatedAt
Component variants
Medium
Finish the vendor
#216
Small
todos/216 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/216" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/216"
);
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/216"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/216"
)
todo = res.json() {
"id": 216,
"todoListId": 18,
"title": "Finish the vendor",
"isDone": true,
"dueDate": null,
"completedAt": "2026-05-07T04:11:10.231Z",
"createdAt": "2025-08-10T15:20:00.658Z",
"updatedAt": "2026-02-17T23:10:25.152Z"
}