Summer Picks
- userId
-
Tabitha McKenzie @tabitha_mckenzie
- name
- Summer Picks
- isPublic
- false
- productIds
-
[ 99, 23, 141, 25, 111, 30, 176, 108, 2 ] - createdAt
- updatedAt
Overview
wishlists / #101
[
99,
23,
141,
25,
111,
30,
176,
108,
2
]
Summer Picks
#101
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/101" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/101" ); 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/101"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/101"
)
wishlist = res.json() Response
{
"id": 101,
"userId": 98,
"name": "Summer Picks",
"isPublic": false,
"productIds": [
99,
23,
141,
25,
111,
30,
176,
108,
2
],
"createdAt": "2024-07-18T17:21:40.042Z",
"updatedAt": "2025-08-09T08:17:24.302Z"
}