todo-lists / #166
- userId
-
Ari Howe @ari.howe73
- name
- Fitness Goals
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Fitness Goals
#166
Small
todo-lists/166 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/166" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/166"
);
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/166"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/166"
)
todo_list = res.json() {
"id": 166,
"userId": 167,
"name": "Fitness Goals",
"isArchived": false,
"createdAt": "2025-12-16T08:20:01.227Z",
"updatedAt": "2026-01-13T14:37:59.117Z"
}