Submit the vendor
- todoListId
- todo-lists/18
- title
- Submit the vendor
- isDone
- true
- dueDate
- 2026-06-18
- completedAt
- createdAt
- updatedAt
Overview
todos / #222
Submit the vendor
#222
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos/222" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todos/222" ); 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/222"
);
const todo = (await res.json()) as Todo; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos/222"
)
todo = res.json() Response
{
"id": 222,
"todoListId": 18,
"title": "Submit the vendor",
"isDone": true,
"dueDate": "2026-06-18",
"completedAt": "2026-04-09T01:04:01.171Z",
"createdAt": "2025-12-08T23:57:59.122Z",
"updatedAt": "2025-12-20T12:39:02.209Z"
}