Home Decor
- userId
-
Esperanza Casper @esperanza_casper
- name
- Home Decor
- isPublic
- true
- productIds
-
[ 70, 117, 186, 190, 84, 108, 181 ] - createdAt
- updatedAt
Overview
wishlists / #99
[
70,
117,
186,
190,
84,
108,
181
]
Home Decor
#99
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/99" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/99" ); 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/99"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/99"
)
wishlist = res.json() Response
{
"id": 99,
"userId": 97,
"name": "Home Decor",
"isPublic": true,
"productIds": [
70,
117,
186,
190,
84,
108,
181
],
"createdAt": "2025-05-06T09:07:26.077Z",
"updatedAt": "2026-04-30T09:46:42.556Z"
}