Back to School
- userId
-
Lamont Huel @lamont.huel
- name
- Back to School
- isPublic
- false
- productIds
-
[ 13, 35, 120, 34, 44, 137, 131, 160, 60, 81, 173, 107 ] - createdAt
- updatedAt
Overview
wishlists / #69
[
13,
35,
120,
34,
44,
137,
131,
160,
60,
81,
173,
107
]
Back to School
#69
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/69" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/69" ); const wishlist = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/wishlists.d.ts https://example-data.com/types/wishlists.d.ts
import type { Wishlist } from "./types/wishlists";
const res = await fetch(
"https://example-data.com/api/v1/wishlists/69"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/69"
)
wishlist = res.json() Response
{
"id": 69,
"userId": 69,
"name": "Back to School",
"isPublic": false,
"productIds": [
13,
35,
120,
34,
44,
137,
131,
160,
60,
81,
173,
107
],
"createdAt": "2024-12-07T20:31:42.084Z",
"updatedAt": "2025-09-13T07:17:38.212Z"
}