wishlists / #61
- userId
-
Simeon Robel @simeon_robel12
- name
- Tech Gadgets
- isPublic
- false
- productIds
-
[ 185, 112, 60, 76, 13, 162, 41, 9, 197, 125, 20, 11, 103, 40 ] - createdAt
- updatedAt
Component variants
Medium
Tech Gadgets
#61
Small
wishlists/61 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/61" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/61"
);
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/61"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/61"
)
wishlist = res.json() {
"id": 61,
"userId": 55,
"name": "Tech Gadgets",
"isPublic": false,
"productIds": [
185,
112,
60,
76,
13,
162,
41,
9,
197,
125,
20,
11,
103,
40
],
"createdAt": "2026-02-17T11:45:28.656Z",
"updatedAt": "2026-03-07T21:53:52.807Z"
}