Research the tickets
- todoListId
- todo-lists/250
- title
- Research the tickets
- isDone
- true
- dueDate
- 2026-06-04
- completedAt
- createdAt
- updatedAt
Overview
todos / #3016
Research the tickets
#3016
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/3016" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/3016" ); 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/3016"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/3016"
)
todo = res.json() Response
{
"id": 3016,
"todoListId": 250,
"title": "Research the tickets",
"isDone": true,
"dueDate": "2026-06-04",
"completedAt": "2025-11-03T18:14:57.801Z",
"createdAt": "2025-10-04T13:14:13.662Z",
"updatedAt": "2026-04-09T18:01:20.132Z"
}