Gift Ideas
- userId
-
Ruben Terry @ruben.terry
- name
- Gift Ideas
- isPublic
- false
- productIds
-
[ 56, 151, 83, 80, 110, 21 ] - createdAt
- updatedAt
Overview
wishlists / #89
[
56,
151,
83,
80,
110,
21
]
Gift Ideas
#89
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/89" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/89" ); 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/89"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/89"
)
wishlist = res.json() Response
{
"id": 89,
"userId": 91,
"name": "Gift Ideas",
"isPublic": false,
"productIds": [
56,
151,
83,
80,
110,
21
],
"createdAt": "2026-03-01T19:43:36.023Z",
"updatedAt": "2026-05-05T18:50:17.999Z"
}