Read the tickets
- todoListId
- todo-lists/79
- title
- Read the tickets
- isDone
- true
- dueDate
- —
- completedAt
- createdAt
- updatedAt
Overview
todos / #949
Read the tickets
#949
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/949" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/949" ); 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/949"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/949"
)
todo = res.json() Response
{
"id": 949,
"todoListId": 79,
"title": "Read the tickets",
"isDone": true,
"dueDate": null,
"completedAt": "2026-02-14T07:43:51.133Z",
"createdAt": "2026-01-21T19:12:08.456Z",
"updatedAt": "2026-03-24T03:07:36.678Z"
}