Prepare the team
- todoListId
- todo-lists/45
- title
- Prepare the team
- isDone
- true
- dueDate
- 2026-05-19
- completedAt
- createdAt
- updatedAt
Overview
todos / #517
Prepare the team
#517
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/517" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/517" ); 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/517"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/517"
)
todo = res.json() Response
{
"id": 517,
"todoListId": 45,
"title": "Prepare the team",
"isDone": true,
"dueDate": "2026-05-19",
"completedAt": "2026-04-27T13:46:24.912Z",
"createdAt": "2026-03-17T12:16:42.660Z",
"updatedAt": "2026-03-22T23:58:01.133Z"
}