Research the team
- todoListId
- todo-lists/127
- title
- Research the team
- isDone
- true
- dueDate
- 2026-05-28
- completedAt
- createdAt
- updatedAt
Overview
todos / #1486
Research the team
#1486
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/1486" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/1486" ); 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/1486"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/1486"
)
todo = res.json() Response
{
"id": 1486,
"todoListId": 127,
"title": "Research the team",
"isDone": true,
"dueDate": "2026-05-28",
"completedAt": "2025-10-13T13:20:08.985Z",
"createdAt": "2025-07-15T01:50:49.856Z",
"updatedAt": "2025-07-15T16:08:22.591Z"
}