Read the feedback
- todoListId
- todo-lists/143
- title
- Read the feedback
- isDone
- false
- dueDate
- 2026-06-10
- completedAt
- —
- createdAt
- updatedAt
Overview
todos / #1709
Read the feedback
#1709
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/1709" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/1709" ); 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/1709"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/1709"
)
todo = res.json() Response
{
"id": 1709,
"todoListId": 143,
"title": "Read the feedback",
"isDone": false,
"dueDate": "2026-06-10",
"completedAt": null,
"createdAt": "2025-10-13T13:42:30.176Z",
"updatedAt": "2025-12-28T00:59:09.491Z"
}