todo-lists / #110
- userId
-
Arnaldo Friesen @arnaldo_friesen78
- name
- Home Projects
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Home Projects
#110
Small
todo-lists/110 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/110" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/110"
);
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/110"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/110"
)
todo_list = res.json() {
"id": 110,
"userId": 113,
"name": "Home Projects",
"isArchived": false,
"createdAt": "2025-09-23T13:21:04.603Z",
"updatedAt": "2025-12-16T17:15:03.918Z"
}