Saved for Later
- userId
-
Kennith Hahn @kennith.hahn
- name
- Saved for Later
- isPublic
- true
- productIds
-
[ 63, 42, 129, 58, 176, 9, 98, 80, 186, 145, 153, 194 ] - createdAt
- updatedAt
Overview
wishlists / #191
[
63,
42,
129,
58,
176,
9,
98,
80,
186,
145,
153,
194
]
Saved for Later
#191
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/191" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/191"
);
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/191"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/191"
)
wishlist = res.json()
Response
{
"id": 191,
"userId": 201,
"name": "Saved for Later",
"isPublic": true,
"productIds": [
63,
42,
129,
58,
176,
9,
98,
80,
186,
145,
153,
194
],
"createdAt": "2025-10-29T00:47:52.572Z",
"updatedAt": "2026-04-11T05:09:26.505Z"
}