wishlists / #68
- userId
-
Jewell Olson @jewell_olson2
- name
- Summer Picks
- isPublic
- false
- productIds
-
[ 31, 34, 8, 168, 179, 74 ] - createdAt
- updatedAt
Component variants
Medium
Summer Picks
#68
Small
wishlists/68 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/68" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/68"
);
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/68"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/68"
)
wishlist = res.json() {
"id": 68,
"userId": 68,
"name": "Summer Picks",
"isPublic": false,
"productIds": [
31,
34,
8,
168,
179,
74
],
"createdAt": "2026-04-08T06:24:33.198Z",
"updatedAt": "2026-05-09T06:31:41.958Z"
}