Follow up with the feedback
- todoListId
- todo-lists/208
- title
- Follow up with the feedback
- isDone
- true
- dueDate
- 2026-05-22
- completedAt
- createdAt
- updatedAt
Overview
todos / #2454
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/2454" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/2454" ); 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/2454"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/2454"
)
todo = res.json() Response
{
"id": 2454,
"todoListId": 208,
"title": "Follow up with the feedback",
"isDone": true,
"dueDate": "2026-05-22",
"completedAt": "2026-05-19T03:54:30.941Z",
"createdAt": "2025-10-12T21:45:44.541Z",
"updatedAt": "2025-11-18T14:44:09.862Z"
}