example-data.com

todo-lists / #10

userId
Jaycee Erdman @jaycee_erdman96
name
Personal Goals
isArchived
true
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/todo-lists/10"
)
todo_list = res.json()
{
  "id": 10,
  "userId": 10,
  "name": "Personal Goals",
  "isArchived": true,
  "createdAt": "2026-05-21T17:00:05.707Z",
  "updatedAt": "2026-05-21T23:19:40.857Z"
}
Draftbit