Summer Picks
- userId
-
Jewell Olson @jewell_olson2
- name
- Summer Picks
- isPublic
- false
- productIds
-
[ 31, 34, 8, 168, 179, 74 ] - createdAt
- updatedAt
Overview
wishlists / #68
[
31,
34,
8,
168,
179,
74
]
Summer Picks
#68
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/68" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/68" ); 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/68"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/68"
)
wishlist = res.json() Response
{
"id": 68,
"userId": 68,
"name": "Summer Picks",
"isPublic": false,
"productIds": [
31,
34,
8,
168,
179,
74
],
"createdAt": "2026-04-08T06:24:33.198Z",
"updatedAt": "2026-05-09T06:31:41.958Z"
}