Book the dashboard
- todoListId
- todo-lists/13
- title
- Book the dashboard
- isDone
- true
- dueDate
- 2026-06-08
- completedAt
- createdAt
- updatedAt
Overview
todos / #154
Book the dashboard
#154
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/154" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/154" ); 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/154"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/154"
)
todo = res.json() Response
{
"id": 154,
"todoListId": 13,
"title": "Book the dashboard",
"isDone": true,
"dueDate": "2026-06-08",
"completedAt": "2026-05-19T18:38:56.652Z",
"createdAt": "2026-05-14T18:03:51.428Z",
"updatedAt": "2026-05-17T11:56:19.466Z"
}