Holiday Gifts
- userId
-
Lacy Gusikowski @lacy.gusikowski
- name
- Holiday Gifts
- isPublic
- false
- productIds
-
[ 108, 148, 86, 83, 173 ] - createdAt
- updatedAt
Overview
wishlists / #51
[
108,
148,
86,
83,
173
]
Holiday Gifts
#51
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/51" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/51" ); 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/51"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/51"
)
wishlist = res.json() Response
{
"id": 51,
"userId": 47,
"name": "Holiday Gifts",
"isPublic": false,
"productIds": [
108,
148,
86,
83,
173
],
"createdAt": "2024-07-13T00:51:08.828Z",
"updatedAt": "2025-04-01T10:49:07.721Z"
}