wishlists / #15
- userId
-
Judy Hackett @judy_hackett49
- name
- Birthday Wishlist
- isPublic
- true
- productIds
-
[ 62, 29, 162, 28, 187, 17, 117 ] - createdAt
- updatedAt
Component variants
Medium
Birthday Wishlist
#15
Small
wishlists/15 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/15" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/15"
);
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/15"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/15"
)
wishlist = res.json() {
"id": 15,
"userId": 13,
"name": "Birthday Wishlist",
"isPublic": true,
"productIds": [
62,
29,
162,
28,
187,
17,
117
],
"createdAt": "2025-09-04T18:31:45.950Z",
"updatedAt": "2026-01-08T19:24:52.882Z"
}