wishlists / #176
- userId
-
Cyril Frami @cyril_frami88
- name
- Summer Picks
- isPublic
- false
- productIds
-
[ 52, 94, 197, 194, 4, 80, 160, 35, 28, 172, 64, 109, 45, 151 ] - createdAt
- updatedAt
Component variants
Medium
Summer Picks
#176
Small
wishlists/176 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/176" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/176"
);
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/176"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/176"
)
wishlist = res.json() {
"id": 176,
"userId": 182,
"name": "Summer Picks",
"isPublic": false,
"productIds": [
52,
94,
197,
194,
4,
80,
160,
35,
28,
172,
64,
109,
45,
151
],
"createdAt": "2025-05-06T10:06:47.913Z",
"updatedAt": "2025-12-07T05:04:14.522Z"
}