todo-lists / #121
- userId
-
Telly Sanford @telly.sanford
- name
- Follow-ups
- isArchived
- false
- createdAt
- updatedAt
Component variants
Medium
Follow-ups
#121
Small
todo-lists/121 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/todo-lists/121" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/todo-lists/121"
);
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/121"
);
const todoList = (await res.json()) as TodoList;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/121"
)
todo_list = res.json() {
"id": 121,
"userId": 123,
"name": "Follow-ups",
"isArchived": false,
"createdAt": "2025-09-29T00:08:19.736Z",
"updatedAt": "2026-03-19T09:31:45.670Z"
}