Follow up with the client
- todoListId
- todo-lists/50
- title
- Follow up with the client
- isDone
- true
- dueDate
- —
- completedAt
- createdAt
- updatedAt
Overview
todos / #571
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/571" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/571" ); 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/571"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/571"
)
todo = res.json() Response
{
"id": 571,
"todoListId": 50,
"title": "Follow up with the client",
"isDone": true,
"dueDate": null,
"completedAt": "2026-01-31T12:03:04.077Z",
"createdAt": "2025-11-28T02:50:50.195Z",
"updatedAt": "2025-12-11T23:35:14.097Z"
}