todo-lists / #240
- userId
-
Emilia Cummerata @emilia_cummerata
- name
- Shopping List
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Shopping List
#240
Small
todo-lists/240 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/240" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/240"
);
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/240"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/240"
)
todo_list = res.json() {
"id": 240,
"userId": 238,
"name": "Shopping List",
"isArchived": false,
"createdAt": "2025-08-30T00:24:02.382Z",
"updatedAt": "2026-04-26T11:49:09.878Z"
}