wishlists / #233
- userId
-
Karolann Legros @karolann_legros
- name
- Home Decor
- isPublic
- false
- productIds
-
[ 184, 116, 46, 192, 70, 153 ] - createdAt
- updatedAt
Component variants
Medium
Home Decor
#233
Small
wishlists/233 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/233" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/233"
);
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/233"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/233"
)
wishlist = res.json() {
"id": 233,
"userId": 246,
"name": "Home Decor",
"isPublic": false,
"productIds": [
184,
116,
46,
192,
70,
153
],
"createdAt": "2026-05-08T21:48:27.048Z",
"updatedAt": "2026-05-18T00:37:32.288Z"
}