todo-lists / #145
- userId
-
Tillman Breitenberg @tillman_breitenberg54
- name
- Long-term Goals
- isArchived
- true
- createdAt
- updatedAt
Component variants
Medium
Long-term Goals
#145
Small
todo-lists/145 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/145" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/145"
);
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/145"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/145"
)
todo_list = res.json() {
"id": 145,
"userId": 145,
"name": "Long-term Goals",
"isArchived": true,
"createdAt": "2026-04-20T05:49:07.021Z",
"updatedAt": "2026-05-21T13:39:01.589Z"
}