todo-lists / #36
- userId
-
Koby Pouros @koby_pouros60
- name
- Fitness Goals
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Fitness Goals
#36
Small
todo-lists/36 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/36" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/36"
);
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/36"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/36"
)
todo_list = res.json() {
"id": 36,
"userId": 34,
"name": "Fitness Goals",
"isArchived": false,
"createdAt": "2025-11-04T12:47:05.928Z",
"updatedAt": "2025-11-09T11:32:20.362Z"
}