Summer Picks
- userId
-
Cruz Okuneva @cruz.okuneva
- name
- Summer Picks
- isPublic
- false
- productIds
-
[ 195, 52, 82, 98, 76, 71, 23, 66, 2, 111, 45, 131, 3, 22 ] - createdAt
- updatedAt
Overview
wishlists / #228
[
195,
52,
82,
98,
76,
71,
23,
66,
2,
111,
45,
131,
3,
22
]
Summer Picks
#228
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/228" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/228"
);
const wishlist = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/wishlists.d.ts https://example-data.com/types/wishlists.d.ts
import type { Wishlist } from "./types/wishlists";
const res = await fetch(
"https://example-data.com/api/v1/wishlists/228"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/228"
)
wishlist = res.json()
Response
{
"id": 228,
"userId": 239,
"name": "Summer Picks",
"isPublic": false,
"productIds": [
195,
52,
82,
98,
76,
71,
23,
66,
2,
111,
45,
131,
3,
22
],
"createdAt": "2026-02-19T03:09:05.776Z",
"updatedAt": "2026-05-05T15:28:14.467Z"
}