Holiday Gifts
- userId
-
Amina King @amina_king41
- name
- Holiday Gifts
- isPublic
- false
- productIds
-
[ 151, 176, 13, 19, 36, 67, 47, 37, 105, 22, 43, 53, 85 ] - createdAt
- updatedAt
Overview
wishlists / #3
[
151,
176,
13,
19,
36,
67,
47,
37,
105,
22,
43,
53,
85
]
Holiday Gifts
#3
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/3" ); 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/3"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/3"
)
wishlist = res.json() Response
{
"id": 3,
"userId": 2,
"name": "Holiday Gifts",
"isPublic": false,
"productIds": [
151,
176,
13,
19,
36,
67,
47,
37,
105,
22,
43,
53,
85
],
"createdAt": "2024-12-16T18:38:21.089Z",
"updatedAt": "2026-01-19T07:31:44.120Z"
}