Holiday Gifts
- userId
-
Michale Hilpert @michale_hilpert62
- name
- Holiday Gifts
- isPublic
- false
- productIds
-
[ 37, 85, 130, 19, 77 ] - createdAt
- updatedAt
Overview
wishlists / #238
[
37,
85,
130,
19,
77
]
Holiday Gifts
#238
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/238" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/238"
);
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/238"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/238"
)
wishlist = res.json()
Response
{
"id": 238,
"userId": 250,
"name": "Holiday Gifts",
"isPublic": false,
"productIds": [
37,
85,
130,
19,
77
],
"createdAt": "2026-05-16T17:43:44.635Z",
"updatedAt": "2026-05-21T04:45:22.600Z"
}