Send the report
- todoListId
- todo-lists/89
- title
- Send the report
- isDone
- true
- dueDate
- —
- completedAt
- createdAt
- updatedAt
Overview
todos / #1050
Send the report
#1050
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/1050" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/1050" ); 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/1050"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/1050"
)
todo = res.json() Response
{
"id": 1050,
"todoListId": 89,
"title": "Send the report",
"isDone": true,
"dueDate": null,
"completedAt": "2026-02-04T12:18:54.358Z",
"createdAt": "2025-06-01T12:55:54.825Z",
"updatedAt": "2025-10-28T22:13:50.575Z"
}