todo-lists / #185
- userId
-
General Morissette @general_morissette47
- name
- Personal Goals
- isArchived
- true
- createdAt
- updatedAt
Component variants
Medium
Personal Goals
#185
Small
todo-lists/185 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/185" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/185"
);
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/185"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/185"
)
todo_list = res.json() {
"id": 185,
"userId": 184,
"name": "Personal Goals",
"isArchived": true,
"createdAt": "2025-12-27T06:15:23.064Z",
"updatedAt": "2026-03-08T14:19:11.170Z"
}