example-data.com

todo-lists / #37

userId
Dwight Dicki-Medhurst @dwight.dicki-medhurst69
name
Personal Goals
isArchived
true
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/todo-lists/37"
)
todo_list = res.json()
{
  "id": 37,
  "userId": 35,
  "name": "Personal Goals",
  "isArchived": true,
  "createdAt": "2025-09-01T09:45:32.124Z",
  "updatedAt": "2025-09-26T08:29:53.803Z"
}
Draftbit