Book the documentation
- todoListId
- todo-lists/66
- title
- Book the documentation
- isDone
- true
- dueDate
- 2026-06-01
- completedAt
- createdAt
- updatedAt
Overview
todos / #790
Book the documentation
#790
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/790" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/790" ); const todo = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/todos.d.ts https://example-data.com/types/todos.d.ts
import type { Todo } from "./types/todos";
const res = await fetch(
"https://example-data.com/api/v1/todos/790"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/790"
)
todo = res.json() Response
{
"id": 790,
"todoListId": 66,
"title": "Book the documentation",
"isDone": true,
"dueDate": "2026-06-01",
"completedAt": "2026-01-26T22:24:30.648Z",
"createdAt": "2026-01-02T11:35:22.790Z",
"updatedAt": "2026-03-15T00:55:32.572Z"
}