Home Decor
- userId
-
Karolann Legros @karolann_legros
- name
- Home Decor
- isPublic
- false
- productIds
-
[ 184, 116, 46, 192, 70, 153 ] - createdAt
- updatedAt
Overview
wishlists / #233
[
184,
116,
46,
192,
70,
153
]
Home Decor
#233
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/233" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/233"
);
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/233"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/233"
)
wishlist = res.json()
Response
{
"id": 233,
"userId": 246,
"name": "Home Decor",
"isPublic": false,
"productIds": [
184,
116,
46,
192,
70,
153
],
"createdAt": "2026-05-08T21:48:27.048Z",
"updatedAt": "2026-05-18T00:37:32.288Z"
}