todo-lists / #35
- userId
-
Koby Pouros @koby_pouros60
- name
- Ideas
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Ideas
#35
Small
todo-lists/35 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/35" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/35"
);
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/35"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/35"
)
todo_list = res.json() {
"id": 35,
"userId": 34,
"name": "Ideas",
"isArchived": false,
"createdAt": "2025-07-22T11:04:34.572Z",
"updatedAt": "2026-04-07T03:56:48.063Z"
}