wishlists / #210
- userId
-
Sarah West @sarah.west
- name
- Saved for Later
- isPublic
- false
- productIds
-
[ 33, 94, 147, 19, 128, 105, 96, 60, 159, 14 ] - createdAt
- updatedAt
Component variants
Medium
Saved for Later
#210
Small
wishlists/210 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/210" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/210"
);
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/210"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/210"
)
wishlist = res.json() {
"id": 210,
"userId": 217,
"name": "Saved for Later",
"isPublic": false,
"productIds": [
33,
94,
147,
19,
128,
105,
96,
60,
159,
14
],
"createdAt": "2025-09-27T02:56:51.203Z",
"updatedAt": "2026-01-24T14:29:53.309Z"
}