example-data.com

todo-lists / #170

userId
Kamryn Rogahn @kamryn_rogahn40
name
Travel Plans
isArchived
false
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/todo-lists/170"
)
todo_list = res.json()
{
  "id": 170,
  "userId": 170,
  "name": "Travel Plans",
  "isArchived": false,
  "createdAt": "2025-11-13T22:56:33.392Z",
  "updatedAt": "2025-11-19T05:52:01.218Z"
}
Draftbit