wishlists / #24
- userId
-
Guy Christiansen @guy.christiansen40
- name
- Home Decor
- isPublic
- false
- productIds
-
[ 99, 29, 111, 89, 188, 8, 33 ] - createdAt
- updatedAt
Component variants
Medium
Home Decor
#24
Small
wishlists/24 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/24" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/24"
);
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/24"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/24"
)
wishlist = res.json() {
"id": 24,
"userId": 21,
"name": "Home Decor",
"isPublic": false,
"productIds": [
99,
29,
111,
89,
188,
8,
33
],
"createdAt": "2025-11-20T22:33:00.487Z",
"updatedAt": "2025-12-24T00:40:04.359Z"
}