todo-lists / #156
- userId
-
Adan Weber @adan.weber61
- name
- Errands
- isArchived
- true
- createdAt
- updatedAt
Component variants
Medium
Errands
#156
Small
todo-lists/156 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/156" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/156"
);
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/156"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/156"
)
todo_list = res.json() {
"id": 156,
"userId": 155,
"name": "Errands",
"isArchived": true,
"createdAt": "2025-06-21T13:52:00.055Z",
"updatedAt": "2026-01-24T12:19:35.684Z"
}