example-data.com

todo-lists / #238

userId
Roosevelt Ullrich @roosevelt.ullrich75
name
Books to Read
isArchived
false
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/todo-lists/238"
)
todo_list = res.json()
{
  "id": 238,
  "userId": 237,
  "name": "Books to Read",
  "isArchived": false,
  "createdAt": "2025-08-04T03:32:41.212Z",
  "updatedAt": "2026-03-14T15:47:54.379Z"
}
Draftbit