wishlists / #104
- userId
-
Charity Crona @charity.crona12
- name
- Saved for Later
- isPublic
- true
- productIds
-
[ 127, 120, 4, 80, 19, 153, 7, 177, 179, 112, 124, 149, 71, 151 ] - createdAt
- updatedAt
Component variants
Medium
Saved for Later
#104
Small
wishlists/104 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/104" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/104"
);
const wishlist = await res.json();import type { Wishlist } from "https://example-data.com/types/wishlists.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/wishlists/104"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/104"
)
wishlist = res.json() {
"id": 104,
"userId": 100,
"name": "Saved for Later",
"isPublic": true,
"productIds": [
127,
120,
4,
80,
19,
153,
7,
177,
179,
112,
124,
149,
71,
151
],
"createdAt": "2026-02-17T22:52:42.760Z",
"updatedAt": "2026-05-10T01:54:08.485Z"
}