Organize the report
- todoListId
- todo-lists/155
- title
- Organize the report
- isDone
- true
- dueDate
- 2026-06-07
- completedAt
- createdAt
- updatedAt
Overview
todos / #1868
Organize the report
#1868
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/1868" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/1868" ); 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/1868"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/1868"
)
todo = res.json() Response
{
"id": 1868,
"todoListId": 155,
"title": "Organize the report",
"isDone": true,
"dueDate": "2026-06-07",
"completedAt": "2025-12-03T18:11:39.562Z",
"createdAt": "2025-11-28T14:29:21.358Z",
"updatedAt": "2026-03-01T12:05:33.640Z"
}