Summer Picks
- userId
-
Roma Durgan @roma.durgan
- name
- Summer Picks
- isPublic
- true
- productIds
-
[ 65, 86, 186, 112, 168 ] - createdAt
- updatedAt
Overview
wishlists / #207
[
65,
86,
186,
112,
168
]
Summer Picks
#207
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/207" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/207"
);
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/207"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/207"
)
wishlist = res.json()
Response
{
"id": 207,
"userId": 215,
"name": "Summer Picks",
"isPublic": true,
"productIds": [
65,
86,
186,
112,
168
],
"createdAt": "2026-03-15T09:59:50.107Z",
"updatedAt": "2026-04-16T20:47:31.656Z"
}