todos / #12
- todoListId
- todo-lists/1
- title
- Organize meeting notes
- isDone
- true
- dueDate
- —
- completedAt
- createdAt
- updatedAt
Component variants
Medium
Organize meeting notes
#12
Small
todos/12 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/12" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/12"
);
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/12"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/12"
)
todo = res.json() {
"id": 12,
"todoListId": 1,
"title": "Organize meeting notes",
"isDone": true,
"dueDate": null,
"completedAt": "2026-01-06T19:55:09.929Z",
"createdAt": "2025-05-28T22:12:16.176Z",
"updatedAt": "2026-04-30T05:43:35.360Z"
}