Travel Plans
- userId
-
Casimir Smitham @casimir_smitham35
- name
- Travel Plans
- isArchived
- false
- createdAt
- updatedAt
Overview
todo-lists / #18
Travel Plans
#18
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todo-lists/18" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todo-lists/18" ); const todoList = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/todo-lists.d.ts https://example-data.com/types/todo-lists.d.ts
import type { TodoList } from "./types/todo-lists";
const res = await fetch(
"https://example-data.com/api/v1/todo-lists/18"
);
const todoList = (await res.json()) as TodoList; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/18"
)
todo_list = res.json() Response
{
"id": 18,
"userId": 16,
"name": "Travel Plans",
"isArchived": false,
"createdAt": "2025-07-05T09:25:35.024Z",
"updatedAt": "2025-10-15T00:25:25.719Z"
}