todo-lists / #160
- userId
-
Marlin Goldner @marlin_goldner6
- name
- Errands
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Errands
#160
Small
todo-lists/160 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/160" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/160"
);
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/160"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/160"
)
todo_list = res.json() {
"id": 160,
"userId": 160,
"name": "Errands",
"isArchived": false,
"createdAt": "2025-07-09T14:05:17.107Z",
"updatedAt": "2025-09-12T02:32:56.277Z"
}