todo-lists / #123
- userId
-
Aaron Fritsch @aaron.fritsch
- name
- Weekly Priorities
- isArchived
- true
- createdAt
- updatedAt
Component variants
Medium
Weekly Priorities
#123
Small
todo-lists/123 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/123" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/123"
);
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/123"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/123"
)
todo_list = res.json() {
"id": 123,
"userId": 124,
"name": "Weekly Priorities",
"isArchived": true,
"createdAt": "2026-04-09T23:58:54.741Z",
"updatedAt": "2026-04-12T15:15:21.719Z"
}