Summer Picks
- userId
-
Leonel Hamill @leonel_hamill33
- name
- Summer Picks
- isPublic
- true
- productIds
-
[ 142, 74, 183, 86, 44, 186, 21, 200, 14, 24, 73, 196 ] - createdAt
- updatedAt
Overview
wishlists / #13
[
142,
74,
183,
86,
44,
186,
21,
200,
14,
24,
73,
196
]
Summer Picks
#13
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/13" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/13" ); 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/13"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/13"
)
wishlist = res.json() Response
{
"id": 13,
"userId": 11,
"name": "Summer Picks",
"isPublic": true,
"productIds": [
142,
74,
183,
86,
44,
186,
21,
200,
14,
24,
73,
196
],
"createdAt": "2025-02-07T10:38:58.242Z",
"updatedAt": "2026-01-05T07:57:56.107Z"
}