todos / #238
- todoListId
- todo-lists/20
- title
- Follow up with the tickets
- isDone
- true
- dueDate
- 2026-06-05
- completedAt
- createdAt
- updatedAt
Component variants
Small
todos/238 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/238" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/238"
);
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/238"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/238"
)
todo = res.json() {
"id": 238,
"todoListId": 20,
"title": "Follow up with the tickets",
"isDone": true,
"dueDate": "2026-06-05",
"completedAt": "2026-02-06T19:59:09.937Z",
"createdAt": "2025-08-06T14:09:38.997Z",
"updatedAt": "2026-01-04T13:24:13.281Z"
}