todo-lists / #183
- userId
-
Minerva Hettinger @minerva_hettinger
- name
- Shopping List
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Shopping List
#183
Small
todo-lists/183 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/183" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/183"
);
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/183"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/183"
)
todo_list = res.json() {
"id": 183,
"userId": 183,
"name": "Shopping List",
"isArchived": false,
"createdAt": "2026-04-23T06:57:32.747Z",
"updatedAt": "2026-05-01T19:25:59.827Z"
}