Summer Picks
- userId
-
Alvina Koch @alvina.koch8
- name
- Summer Picks
- isPublic
- false
- productIds
-
[ 162, 141, 169, 34, 165, 148, 174, 177, 176, 84, 70 ] - createdAt
- updatedAt
Overview
wishlists / #21
[
162,
141,
169,
34,
165,
148,
174,
177,
176,
84,
70
]
Summer Picks
#21
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/21" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/21" ); 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/21"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/21"
)
wishlist = res.json() Response
{
"id": 21,
"userId": 20,
"name": "Summer Picks",
"isPublic": false,
"productIds": [
162,
141,
169,
34,
165,
148,
174,
177,
176,
84,
70
],
"createdAt": "2024-07-17T01:56:28.800Z",
"updatedAt": "2025-10-05T15:32:01.166Z"
}