example-data.com

todo-lists / #3

userId
Cayla Farrell @cayla_farrell
name
Learning Objectives
isArchived
true
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/todo-lists/3"
)
todo_list = res.json()
{
  "id": 3,
  "userId": 4,
  "name": "Learning Objectives",
  "isArchived": true,
  "createdAt": "2025-09-25T11:11:25.730Z",
  "updatedAt": "2025-11-14T21:00:22.030Z"
}
Draftbit