todo-lists / #174
- userId
-
Perry Kerluke @perry_kerluke83
- name
- Ideas
- isArchived
- true
- createdAt
- updatedAt
Component variants
Medium
Ideas
#174
Small
todo-lists/174 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/174" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/174"
);
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/174"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/174"
)
todo_list = res.json() {
"id": 174,
"userId": 174,
"name": "Ideas",
"isArchived": true,
"createdAt": "2026-03-22T15:39:50.618Z",
"updatedAt": "2026-04-06T09:28:55.002Z"
}