Submit the dashboard
- todoListId
- todo-lists/141
- title
- Submit the dashboard
- isDone
- false
- dueDate
- 2026-06-14
- completedAt
- —
- createdAt
- updatedAt
Overview
todos / #1683
Submit the dashboard
#1683
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/1683" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/1683" ); 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/1683"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/1683"
)
todo = res.json() Response
{
"id": 1683,
"todoListId": 141,
"title": "Submit the dashboard",
"isDone": false,
"dueDate": "2026-06-14",
"completedAt": null,
"createdAt": "2025-08-07T15:38:51.293Z",
"updatedAt": "2025-08-28T05:10:10.607Z"
}