Finish the invoice
- todoListId
- todo-lists/139
- title
- Finish the invoice
- isDone
- false
- dueDate
- 2026-05-29
- completedAt
- —
- createdAt
- updatedAt
Overview
todos / #1645
Finish the invoice
#1645
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/1645" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/1645" ); 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/1645"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/1645"
)
todo = res.json() Response
{
"id": 1645,
"todoListId": 139,
"title": "Finish the invoice",
"isDone": false,
"dueDate": "2026-05-29",
"completedAt": null,
"createdAt": "2025-11-07T19:26:14.061Z",
"updatedAt": "2026-02-08T18:42:05.058Z"
}