Check meeting notes
- todoListId
- todo-lists/118
- title
- Check meeting notes
- isDone
- true
- dueDate
- 2026-05-16
- completedAt
- createdAt
- updatedAt
Overview
todos / #1366
Check meeting notes
#1366
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/1366" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/1366" ); 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/1366"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/1366"
)
todo = res.json() Response
{
"id": 1366,
"todoListId": 118,
"title": "Check meeting notes",
"isDone": true,
"dueDate": "2026-05-16",
"completedAt": "2026-05-21T03:39:20.705Z",
"createdAt": "2026-01-09T15:48:12.767Z",
"updatedAt": "2026-03-14T22:03:05.408Z"
}