Home Decor
- userId
-
Conrad Connelly @conrad.connelly22
- name
- Home Decor
- isPublic
- false
- productIds
-
[ 62, 17, 158, 133, 134, 123, 8, 116, 185, 57, 75, 179, 83, 20 ] - createdAt
- updatedAt
Overview
wishlists / #35
[
62,
17,
158,
133,
134,
123,
8,
116,
185,
57,
75,
179,
83,
20
]
Home Decor
#35
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/35" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/35" ); 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/35"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/35"
)
wishlist = res.json() Response
{
"id": 35,
"userId": 30,
"name": "Home Decor",
"isPublic": false,
"productIds": [
62,
17,
158,
133,
134,
123,
8,
116,
185,
57,
75,
179,
83,
20
],
"createdAt": "2026-03-25T19:16:44.038Z",
"updatedAt": "2026-05-16T20:23:04.395Z"
}