wishlists / #222
- userId
-
Adelia Roberts @adelia_roberts0
- name
- Saved for Later
- isPublic
- false
- productIds
-
[ 150, 62, 10, 93, 126, 66, 134, 60, 195, 190, 167, 96 ] - createdAt
- updatedAt
Component variants
Medium
Saved for Later
#222
Small
wishlists/222 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/222" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/222"
);
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/222"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/222"
)
wishlist = res.json() {
"id": 222,
"userId": 231,
"name": "Saved for Later",
"isPublic": false,
"productIds": [
150,
62,
10,
93,
126,
66,
134,
60,
195,
190,
167,
96
],
"createdAt": "2025-11-11T14:21:28.142Z",
"updatedAt": "2026-03-25T02:04:51.647Z"
}