todo-lists / #189
- userId
-
Sammy Schmidt @sammy.schmidt
- name
- Shopping List
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Shopping List
#189
Small
todo-lists/189 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/189" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/189"
);
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/189"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/189"
)
todo_list = res.json() {
"id": 189,
"userId": 186,
"name": "Shopping List",
"isArchived": false,
"createdAt": "2025-07-03T16:32:49.635Z",
"updatedAt": "2025-12-24T00:22:12.764Z"
}