todo-lists / #18
- userId
-
Casimir Smitham @casimir_smitham35
- name
- Travel Plans
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Travel Plans
#18
Small
todo-lists/18 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/18" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/18"
);
const todoList = await res.json();import type { TodoList } from "https://example-data.com/types/todo-lists.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/todo-lists/18"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/18"
)
todo_list = res.json() {
"id": 18,
"userId": 16,
"name": "Travel Plans",
"isArchived": false,
"createdAt": "2025-07-05T09:25:35.024Z",
"updatedAt": "2025-10-15T00:25:25.719Z"
}