Home Decor
- userId
-
Jameson Considine @jameson.considine1
- name
- Home Decor
- isPublic
- true
- productIds
-
[ 129, 120, 163, 122, 91, 38, 17, 59, 48, 53, 166, 83 ] - createdAt
- updatedAt
Overview
wishlists / #225
[
129,
120,
163,
122,
91,
38,
17,
59,
48,
53,
166,
83
]
Home Decor
#225
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/225" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/225"
);
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/225"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/225"
)
wishlist = res.json()
Response
{
"id": 225,
"userId": 236,
"name": "Home Decor",
"isPublic": true,
"productIds": [
129,
120,
163,
122,
91,
38,
17,
59,
48,
53,
166,
83
],
"createdAt": "2025-02-17T13:27:29.586Z",
"updatedAt": "2025-11-17T20:44:18.836Z"
}