wishlists / #82
- userId
-
Bradford Doyle @bradford.doyle42
- name
- Saved for Later
- isPublic
- false
- productIds
-
[ 183, 150, 154 ] - createdAt
- updatedAt
Component variants
Medium
Saved for Later
#82
Small
wishlists/82 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/82" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/82"
);
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/82"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/82"
)
wishlist = res.json() {
"id": 82,
"userId": 79,
"name": "Saved for Later",
"isPublic": false,
"productIds": [
183,
150,
154
],
"createdAt": "2025-08-04T02:23:45.432Z",
"updatedAt": "2025-09-01T17:41:27.148Z"
}