todo-lists / #50
- userId
-
Lamar Wilkinson @lamar_wilkinson43
- name
- Backlog
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Backlog
#50
Small
todo-lists/50 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/50" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/50"
);
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/50"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/50"
)
todo_list = res.json() {
"id": 50,
"userId": 43,
"name": "Backlog",
"isArchived": false,
"createdAt": "2025-08-22T11:31:49.377Z",
"updatedAt": "2025-12-12T20:42:10.795Z"
}