todo-lists / #195
- userId
-
Oliver Mitchell @oliver_mitchell50
- name
- Weekly Priorities
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Weekly Priorities
#195
Small
todo-lists/195 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/195" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/195"
);
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/195"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/195"
)
todo_list = res.json() {
"id": 195,
"userId": 194,
"name": "Weekly Priorities",
"isArchived": false,
"createdAt": "2025-09-30T21:15:57.563Z",
"updatedAt": "2025-12-01T10:24:32.397Z"
}