todos / #191
- todoListId
- todo-lists/16
- title
- Check the feedback
- isDone
- false
- dueDate
- —
- completedAt
- —
- createdAt
- updatedAt
Component variants
Medium
Check the feedback
#191
Small
todos/191 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/191" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/191"
);
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/191"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/191"
)
todo = res.json() {
"id": 191,
"todoListId": 16,
"title": "Check the feedback",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-06-27T18:10:47.539Z",
"updatedAt": "2025-11-28T03:51:33.576Z"
}