Check the documentation
- todoListId
- todo-lists/1
- title
- Check the documentation
- isDone
- true
- dueDate
- —
- completedAt
- createdAt
- updatedAt
Overview
todos / #3
Check the documentation
#3
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/3" ); 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/3"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/3"
)
todo = res.json() Response
{
"id": 3,
"todoListId": 1,
"title": "Check the documentation",
"isDone": true,
"dueDate": null,
"completedAt": "2026-03-02T05:24:01.080Z",
"createdAt": "2025-05-29T11:27:08.947Z",
"updatedAt": "2026-03-10T14:42:48.220Z"
}