wishlists / #178
- userId
-
General Morissette @general_morissette47
- name
- Summer Picks
- isPublic
- true
- productIds
-
[ 106, 98, 84 ] - createdAt
- updatedAt
Component variants
Medium
Summer Picks
#178
Small
wishlists/178 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/178" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/178"
);
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/178"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/178"
)
wishlist = res.json() {
"id": 178,
"userId": 184,
"name": "Summer Picks",
"isPublic": true,
"productIds": [
106,
98,
84
],
"createdAt": "2024-06-13T20:27:25.406Z",
"updatedAt": "2025-07-14T04:10:14.919Z"
}