example-data.com

todo-lists / #181

userId
Lamont Schroeder @lamont.schroeder89
name
Shopping List
isArchived
false
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/todo-lists/181" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/todo-lists/181"
);
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/181"
);
const todoList = (await res.json()) as TodoList;
import requests

res = requests.get(
    "https://example-data.com/api/v1/todo-lists/181"
)
todo_list = res.json()
{
  "id": 181,
  "userId": 180,
  "name": "Shopping List",
  "isArchived": false,
  "createdAt": "2025-09-18T07:06:25.868Z",
  "updatedAt": "2026-04-27T02:42:07.853Z"
}
Draftbit