todo-lists / #2
- userId
-
Conner Bernhard @conner.bernhard33
- name
- Errands
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Errands
#2
Small
todo-lists/2 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/2" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/2"
);
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/2"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/2"
)
todo_list = res.json() {
"id": 2,
"userId": 3,
"name": "Errands",
"isArchived": false,
"createdAt": "2025-11-10T23:04:53.556Z",
"updatedAt": "2025-12-25T18:04:39.736Z"
}