todo-lists / #188
- userId
-
Van Crona @van_crona
- name
- Errands
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Errands
#188
Small
todo-lists/188 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/188" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/188"
);
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/188"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/188"
)
todo_list = res.json() {
"id": 188,
"userId": 185,
"name": "Errands",
"isArchived": false,
"createdAt": "2025-07-21T09:09:06.342Z",
"updatedAt": "2026-02-22T21:02:10.682Z"
}