Review the vendor
- todoListId
- todo-lists/149
- title
- Review the vendor
- isDone
- true
- dueDate
- 2026-06-10
- completedAt
- createdAt
- updatedAt
Overview
todos / #1779
Review the vendor
#1779
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/1779" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/1779" ); 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/1779"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/1779"
)
todo = res.json() Response
{
"id": 1779,
"todoListId": 149,
"title": "Review the vendor",
"isDone": true,
"dueDate": "2026-06-10",
"completedAt": "2026-03-22T00:28:53.944Z",
"createdAt": "2025-11-26T03:15:09.903Z",
"updatedAt": "2026-02-10T12:22:36.504Z"
}