Fix the budget
- todoListId
- todo-lists/33
- title
- Fix the budget
- isDone
- true
- dueDate
- 2026-06-15
- completedAt
- createdAt
- updatedAt
Overview
todos / #400
Fix the budget
#400
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/400" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/400" ); 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/400"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/400"
)
todo = res.json() Response
{
"id": 400,
"todoListId": 33,
"title": "Fix the budget",
"isDone": true,
"dueDate": "2026-06-15",
"completedAt": "2025-12-29T03:59:26.667Z",
"createdAt": "2025-12-12T13:12:49.835Z",
"updatedAt": "2026-05-09T05:48:28.195Z"
}