example-data.com

todo-lists / #157

userId
Sandrine Osinski @sandrine.osinski
name
Learning Objectives
isArchived
true
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/todo-lists/157"
)
todo_list = res.json()
{
  "id": 157,
  "userId": 157,
  "name": "Learning Objectives",
  "isArchived": true,
  "createdAt": "2026-03-06T09:37:50.940Z",
  "updatedAt": "2026-04-22T07:11:48.259Z"
}
Draftbit