todos / #168
- todoListId
- todo-lists/14
- title
- Email meeting notes
- isDone
- false
- dueDate
- 2026-06-08
- completedAt
- —
- createdAt
- updatedAt
Component variants
Medium
Email meeting notes
#168
Small
todos/168 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/168" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/168"
);
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/168"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/168"
)
todo = res.json() {
"id": 168,
"todoListId": 14,
"title": "Email meeting notes",
"isDone": false,
"dueDate": "2026-06-08",
"completedAt": null,
"createdAt": "2026-02-17T11:50:24.213Z",
"updatedAt": "2026-04-21T10:18:08.883Z"
}