wishlists / #110
- userId
-
Allan Buckridge @allan_buckridge
- name
- Want Later
- isPublic
- false
- productIds
-
[ 149, 96, 124, 152 ] - createdAt
- updatedAt
Component variants
Medium
Want Later
#110
Small
wishlists/110 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/110" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/110"
);
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/110"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/110"
)
wishlist = res.json() {
"id": 110,
"userId": 106,
"name": "Want Later",
"isPublic": false,
"productIds": [
149,
96,
124,
152
],
"createdAt": "2026-02-18T08:43:16.612Z",
"updatedAt": "2026-02-19T05:43:40.899Z"
}