wishlists / #123
- userId
-
Jennifer Hoeger @jennifer.hoeger
- name
- Birthday Wishlist
- isPublic
- false
- productIds
-
[ 104, 152, 39, 148, 87, 142, 90 ] - createdAt
- updatedAt
Component variants
Medium
Birthday Wishlist
#123
Small
wishlists/123 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/123" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/123"
);
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/123"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/123"
)
wishlist = res.json() {
"id": 123,
"userId": 119,
"name": "Birthday Wishlist",
"isPublic": false,
"productIds": [
104,
152,
39,
148,
87,
142,
90
],
"createdAt": "2026-03-26T20:10:01.431Z",
"updatedAt": "2026-04-09T00:54:28.248Z"
}