Research the vendor
- todoListId
- todo-lists/56
- title
- Research the vendor
- isDone
- false
- dueDate
- —
- completedAt
- —
- createdAt
- updatedAt
Overview
todos / #654
Research the vendor
#654
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/654" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/654" ); 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/654"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/654"
)
todo = res.json() Response
{
"id": 654,
"todoListId": 56,
"title": "Research the vendor",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-08-30T22:06:59.554Z",
"updatedAt": "2025-12-02T08:38:01.975Z"
}