todo-lists / #155
- userId
-
Adan Weber @adan.weber61
- name
- Shopping List
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Shopping List
#155
Small
todo-lists/155 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/155" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/155"
);
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/155"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/155"
)
todo_list = res.json() {
"id": 155,
"userId": 155,
"name": "Shopping List",
"isArchived": false,
"createdAt": "2026-03-17T14:06:16.773Z",
"updatedAt": "2026-04-11T17:35:28.168Z"
}