wishlists / #225
- userId
-
Jameson Considine @jameson.considine1
- name
- Home Decor
- isPublic
- true
- productIds
-
[ 129, 120, 163, 122, 91, 38, 17, 59, 48, 53, 166, 83 ] - createdAt
- updatedAt
Component variants
Medium
Home Decor
#225
Small
wishlists/225 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/225" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/225"
);
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/225"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/225"
)
wishlist = res.json() {
"id": 225,
"userId": 236,
"name": "Home Decor",
"isPublic": true,
"productIds": [
129,
120,
163,
122,
91,
38,
17,
59,
48,
53,
166,
83
],
"createdAt": "2025-02-17T13:27:29.586Z",
"updatedAt": "2025-11-17T20:44:18.836Z"
}