Plan the dashboard
- todoListId
- todo-lists/231
- title
- Plan the dashboard
- isDone
- true
- dueDate
- 2026-06-09
- completedAt
- createdAt
- updatedAt
Overview
todos / #2745
Plan the dashboard
#2745
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/2745" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/2745" ); 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/2745"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/2745"
)
todo = res.json() Response
{
"id": 2745,
"todoListId": 231,
"title": "Plan the dashboard",
"isDone": true,
"dueDate": "2026-06-09",
"completedAt": "2026-02-15T18:08:10.795Z",
"createdAt": "2026-01-18T13:56:22.491Z",
"updatedAt": "2026-04-16T06:32:20.738Z"
}