todo-lists / #77
- userId
-
Ike Breitenberg @ike.breitenberg
- name
- Ideas
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Ideas
#77
Small
todo-lists/77 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/77" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/77"
);
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/77"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/77"
)
todo_list = res.json() {
"id": 77,
"userId": 72,
"name": "Ideas",
"isArchived": false,
"createdAt": "2025-08-05T06:19:20.591Z",
"updatedAt": "2026-04-27T02:29:26.258Z"
}