Send the budget
- todoListId
- todo-lists/76
- title
- Send the budget
- isDone
- false
- dueDate
- 2026-05-17
- completedAt
- —
- createdAt
- updatedAt
Overview
todos / #903
Send the budget
#903
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/903" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/903" ); 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/903"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/903"
)
todo = res.json() Response
{
"id": 903,
"todoListId": 76,
"title": "Send the budget",
"isDone": false,
"dueDate": "2026-05-17",
"completedAt": null,
"createdAt": "2025-07-19T17:34:36.116Z",
"updatedAt": "2026-04-19T20:59:13.340Z"
}