todo-lists / #38
- userId
-
Karlee Hudson-Turner @karlee.hudson-turner88
- name
- Books to Read
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Books to Read
#38
Small
todo-lists/38 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/38" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/38"
);
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/38"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/38"
)
todo_list = res.json() {
"id": 38,
"userId": 36,
"name": "Books to Read",
"isArchived": false,
"createdAt": "2025-09-08T22:24:37.811Z",
"updatedAt": "2026-02-26T17:44:47.040Z"
}