Birthday Wishlist
- userId
-
Jennifer Hoeger @jennifer.hoeger
- name
- Birthday Wishlist
- isPublic
- false
- productIds
-
[ 104, 152, 39, 148, 87, 142, 90 ] - createdAt
- updatedAt
Overview
wishlists / #123
[
104,
152,
39,
148,
87,
142,
90
]
Birthday Wishlist
#123
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/123" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/123"
);
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/123"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/123"
)
wishlist = res.json()
Response
{
"id": 123,
"userId": 119,
"name": "Birthday Wishlist",
"isPublic": false,
"productIds": [
104,
152,
39,
148,
87,
142,
90
],
"createdAt": "2026-03-26T20:10:01.431Z",
"updatedAt": "2026-04-09T00:54:28.248Z"
}