todos / #3
- todoListId
- todo-lists/1
- title
- Check the documentation
- isDone
- true
- dueDate
- —
- completedAt
- createdAt
- updatedAt
Component variants
Medium
Check the documentation
#3
Small
todos/3 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/3" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/3"
);
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/3"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/3"
)
todo = res.json() {
"id": 3,
"todoListId": 1,
"title": "Check the documentation",
"isDone": true,
"dueDate": null,
"completedAt": "2026-03-02T05:24:01.080Z",
"createdAt": "2025-05-29T11:27:08.947Z",
"updatedAt": "2026-03-10T14:42:48.220Z"
}