todos / #64
- todoListId
- todo-lists/5
- title
- Research the client
- isDone
- false
- dueDate
- —
- completedAt
- —
- createdAt
- updatedAt
Component variants
Medium
Research the client
#64
Small
todos/64 Related
References
curl -sS \
"https://example-data.com/api/v1/todos/64" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todos/64"
);
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/64"
);
const todo = (await res.json()) as Todo;import requests
res = requests.get(
"https://example-data.com/api/v1/todos/64"
)
todo = res.json() {
"id": 64,
"todoListId": 5,
"title": "Research the client",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2026-05-10T16:43:10.402Z",
"updatedAt": "2026-05-21T00:55:47.618Z"
}