wishlists / #13
- userId
-
Leonel Hamill @leonel_hamill33
- name
- Summer Picks
- isPublic
- true
- productIds
-
[ 142, 74, 183, 86, 44, 186, 21, 200, 14, 24, 73, 196 ] - createdAt
- updatedAt
Component variants
Medium
Summer Picks
#13
Small
wishlists/13 Related
References
curl -sS \
"https://example-data.com/api/v1/wishlists/13" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/wishlists/13"
);
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/13"
);
const wishlist = (await res.json()) as Wishlist;import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/13"
)
wishlist = res.json() {
"id": 13,
"userId": 11,
"name": "Summer Picks",
"isPublic": true,
"productIds": [
142,
74,
183,
86,
44,
186,
21,
200,
14,
24,
73,
196
],
"createdAt": "2025-02-07T10:38:58.242Z",
"updatedAt": "2026-01-05T07:57:56.107Z"
}