wishlists / #112
- userId
-
Vida Kunde-Koepp @vida_kunde-koepp95
- name
- Tech Gadgets
- isPublic
- false
- productIds
-
[ 10, 40, 129, 134, 21 ] - createdAt
- updatedAt
Component variants
Medium
Tech Gadgets
#112
Small
wishlists/112 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/112" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/112"
);
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/112"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/112"
)
wishlist = res.json() {
"id": 112,
"userId": 109,
"name": "Tech Gadgets",
"isPublic": false,
"productIds": [
10,
40,
129,
134,
21
],
"createdAt": "2025-07-31T21:25:07.639Z",
"updatedAt": "2025-08-01T23:00:54.381Z"
}