Send the checklist
- todoListId
- todo-lists/159
- title
- Send the checklist
- isDone
- false
- dueDate
- —
- completedAt
- —
- createdAt
- updatedAt
Overview
todos / #1903
Send the checklist
#1903
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/1903" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/1903" ); 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/1903"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/1903"
)
todo = res.json() Response
{
"id": 1903,
"todoListId": 159,
"title": "Send the checklist",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-07-13T14:28:37.833Z",
"updatedAt": "2026-02-22T15:47:12.569Z"
}