Summer Picks
- userId
-
Myrtie Daniel @myrtie_daniel33
- name
- Summer Picks
- isPublic
- true
- productIds
-
[ 184, 9, 50, 158, 176, 169, 81, 10, 167, 24 ] - createdAt
- updatedAt
Overview
wishlists / #49
[
184,
9,
50,
158,
176,
169,
81,
10,
167,
24
]
Summer Picks
#49
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/49" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/49" ); 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/49"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/49"
)
wishlist = res.json() Response
{
"id": 49,
"userId": 45,
"name": "Summer Picks",
"isPublic": true,
"productIds": [
184,
9,
50,
158,
176,
169,
81,
10,
167,
24
],
"createdAt": "2025-08-14T19:26:38.460Z",
"updatedAt": "2026-02-01T23:34:04.112Z"
}