todo-lists / #206
- userId
-
Vidal Parker @vidal_parker12
- name
- Long-term Goals
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Long-term Goals
#206
Small
todo-lists/206 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/206" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/206"
);
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/206"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/206"
)
todo_list = res.json() {
"id": 206,
"userId": 203,
"name": "Long-term Goals",
"isArchived": false,
"createdAt": "2025-06-02T14:00:57.350Z",
"updatedAt": "2026-04-27T05:04:22.707Z"
}