todo-lists / #9
- userId
-
Anne Hamill @anne_hamill75
- name
- Home Projects
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Home Projects
#9
Small
todo-lists/9 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/9" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/9"
);
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/9"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/9"
)
todo_list = res.json() {
"id": 9,
"userId": 9,
"name": "Home Projects",
"isArchived": false,
"createdAt": "2025-09-27T17:49:56.124Z",
"updatedAt": "2025-10-10T19:35:06.537Z"
}