Summer Picks
- userId
-
Marta Harvey @marta.harvey68
- name
- Summer Picks
- isPublic
- false
- productIds
-
[ 41, 29 ] - createdAt
- updatedAt
Overview
wishlists / #115
[
41,
29
]
Summer Picks
#115
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/115" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/115" ); 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/115"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/115"
)
wishlist = res.json() Response
{
"id": 115,
"userId": 112,
"name": "Summer Picks",
"isPublic": false,
"productIds": [
41,
29
],
"createdAt": "2025-06-18T15:02:04.263Z",
"updatedAt": "2025-06-21T13:28:59.556Z"
}