wishlists / #92
- userId
-
Velma Jerde @velma.jerde56
- name
- Tech Gadgets
- isPublic
- false
- productIds
-
[ 185, 132 ] - createdAt
- updatedAt
Component variants
Medium
Tech Gadgets
#92
Small
wishlists/92 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/92" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/92"
);
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/92"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/92"
)
wishlist = res.json() {
"id": 92,
"userId": 93,
"name": "Tech Gadgets",
"isPublic": false,
"productIds": [
185,
132
],
"createdAt": "2026-04-03T12:13:09.362Z",
"updatedAt": "2026-04-08T19:19:31.065Z"
}