Holiday Gifts
- userId
-
Kamryn Rogahn @kamryn_rogahn40
- name
- Holiday Gifts
- isPublic
- false
- productIds
-
[ 109, 157, 33, 166, 59, 110, 68 ] - createdAt
- updatedAt
Overview
wishlists / #162
[
109,
157,
33,
166,
59,
110,
68
]
Holiday Gifts
#162
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/162" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/162"
);
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/162"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/162"
)
wishlist = res.json()
Response
{
"id": 162,
"userId": 170,
"name": "Holiday Gifts",
"isPublic": false,
"productIds": [
109,
157,
33,
166,
59,
110,
68
],
"createdAt": "2025-05-19T22:57:23.151Z",
"updatedAt": "2025-09-06T07:39:40.832Z"
}