Read the dashboard
- todoListId
- todo-lists/107
- title
- Read the dashboard
- isDone
- true
- dueDate
- 2026-05-27
- completedAt
- createdAt
- updatedAt
Overview
todos / #1234
Read the dashboard
#1234
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/1234" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/1234" ); 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/1234"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/1234"
)
todo = res.json() Response
{
"id": 1234,
"todoListId": 107,
"title": "Read the dashboard",
"isDone": true,
"dueDate": "2026-05-27",
"completedAt": "2026-02-10T01:41:12.178Z",
"createdAt": "2025-11-28T04:19:19.797Z",
"updatedAt": "2025-12-11T09:15:35.296Z"
}