Review the dashboard
- todoListId
- todo-lists/250
- title
- Review the dashboard
- isDone
- true
- dueDate
- 2026-06-16
- completedAt
- createdAt
- updatedAt
Overview
todos / #3015
Review the dashboard
#3015
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/3015" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/3015" ); 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/3015"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/3015"
)
todo = res.json() Response
{
"id": 3015,
"todoListId": 250,
"title": "Review the dashboard",
"isDone": true,
"dueDate": "2026-06-16",
"completedAt": "2026-02-25T09:08:28.262Z",
"createdAt": "2025-06-04T20:18:20.855Z",
"updatedAt": "2025-07-30T18:51:33.955Z"
}