Birthday Wishlist
- userId
-
Gwendolyn Wyman @gwendolyn.wyman87
- name
- Birthday Wishlist
- isPublic
- false
- productIds
-
[ 45, 200, 104, 117 ] - createdAt
- updatedAt
Overview
wishlists / #41
[
45,
200,
104,
117
]
Birthday Wishlist
#41
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/41" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/41" ); 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/41"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/41"
)
wishlist = res.json() Response
{
"id": 41,
"userId": 40,
"name": "Birthday Wishlist",
"isPublic": false,
"productIds": [
45,
200,
104,
117
],
"createdAt": "2024-11-14T00:00:54.480Z",
"updatedAt": "2025-07-06T06:56:37.548Z"
}