Holiday Gifts
- userId
-
Guy Christiansen @guy.christiansen40
- name
- Holiday Gifts
- isPublic
- false
- productIds
-
[ 174, 118, 114, 111, 161, 193, 2, 164, 30, 200, 24, 66, 154, 133 ] - createdAt
- updatedAt
Overview
wishlists / #23
[
174,
118,
114,
111,
161,
193,
2,
164,
30,
200,
24,
66,
154,
133
]
Holiday Gifts
#23
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/23" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/23" ); 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/23"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/23"
)
wishlist = res.json() Response
{
"id": 23,
"userId": 21,
"name": "Holiday Gifts",
"isPublic": false,
"productIds": [
174,
118,
114,
111,
161,
193,
2,
164,
30,
200,
24,
66,
154,
133
],
"createdAt": "2025-12-10T21:25:31.860Z",
"updatedAt": "2026-02-01T16:25:01.141Z"
}