wishlists / #156
- userId
-
Alex Lang @alex_lang85
- name
- Tech Gadgets
- isPublic
- false
- productIds
-
[ 16, 119, 126, 95, 19, 35 ] - createdAt
- updatedAt
Component variants
Medium
Tech Gadgets
#156
Small
wishlists/156 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/156" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/156"
);
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/156"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/156"
)
wishlist = res.json() {
"id": 156,
"userId": 163,
"name": "Tech Gadgets",
"isPublic": false,
"productIds": [
16,
119,
126,
95,
19,
35
],
"createdAt": "2025-09-19T22:19:07.687Z",
"updatedAt": "2026-05-05T11:47:14.121Z"
}