Shopping List
- userId
-
Lamont Schroeder @lamont.schroeder89
- name
- Shopping List
- isArchived
- false
- createdAt
- updatedAt
Overview
todo-lists / #181
Shopping List
#181
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todo-lists/181" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todo-lists/181" ); const todoList = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/todo-lists.d.ts https://example-data.com/types/todo-lists.d.ts
import type { TodoList } from "./types/todo-lists";
const res = await fetch(
"https://example-data.com/api/v1/todo-lists/181"
);
const todoList = (await res.json()) as TodoList; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/181"
)
todo_list = res.json() Response
{
"id": 181,
"userId": 180,
"name": "Shopping List",
"isArchived": false,
"createdAt": "2025-09-18T07:06:25.868Z",
"updatedAt": "2026-04-27T02:42:07.853Z"
}