Read the vendor
- todoListId
- todo-lists/63
- title
- Read the vendor
- isDone
- true
- dueDate
- —
- completedAt
- createdAt
- updatedAt
Overview
todos / #744
Read the vendor
#744
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/744" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/744" ); 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/744"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/744"
)
todo = res.json() Response
{
"id": 744,
"todoListId": 63,
"title": "Read the vendor",
"isDone": true,
"dueDate": null,
"completedAt": "2025-10-01T03:02:55.518Z",
"createdAt": "2025-09-18T21:36:30.702Z",
"updatedAt": "2025-11-11T12:28:09.946Z"
}