Holiday Gifts
- userId
-
Zachariah Herzog @zachariah_herzog42
- name
- Holiday Gifts
- isPublic
- false
- productIds
-
[ 103, 56 ] - createdAt
- updatedAt
Overview
wishlists / #17
[
103,
56
]
Holiday Gifts
#17
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/17" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/17" ); 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/17"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/17"
)
wishlist = res.json() Response
{
"id": 17,
"userId": 15,
"name": "Holiday Gifts",
"isPublic": false,
"productIds": [
103,
56
],
"createdAt": "2025-09-25T04:41:26.962Z",
"updatedAt": "2025-09-29T23:45:52.103Z"
}