example-data.com

todo-lists / #216

userId
Earlene Wisozk @earlene.wisozk
name
Follow-ups
isArchived
false
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/todo-lists/216"
)
todo_list = res.json()
{
  "id": 216,
  "userId": 216,
  "name": "Follow-ups",
  "isArchived": false,
  "createdAt": "2025-12-24T07:15:55.138Z",
  "updatedAt": "2026-01-26T09:18:00.504Z"
}
Draftbit