todo-lists / #76
- userId
-
Florencio Mohr @florencio_mohr
- name
- Fitness Goals
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Fitness Goals
#76
Small
todo-lists/76 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/76" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/76"
);
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/76"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/76"
)
todo_list = res.json() {
"id": 76,
"userId": 71,
"name": "Fitness Goals",
"isArchived": false,
"createdAt": "2025-11-19T09:25:01.827Z",
"updatedAt": "2026-02-16T11:45:07.260Z"
}