Summer Picks
- userId
-
General Morissette @general_morissette47
- name
- Summer Picks
- isPublic
- true
- productIds
-
[ 106, 98, 84 ] - createdAt
- updatedAt
Overview
wishlists / #178
[
106,
98,
84
]
Summer Picks
#178
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/178" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/178"
);
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/178"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/178"
)
wishlist = res.json()
Response
{
"id": 178,
"userId": 184,
"name": "Summer Picks",
"isPublic": true,
"productIds": [
106,
98,
84
],
"createdAt": "2024-06-13T20:27:25.406Z",
"updatedAt": "2025-07-14T04:10:14.919Z"
}