Summer Picks
- userId
-
Rubye Emmerich @rubye.emmerich
- name
- Summer Picks
- isPublic
- true
- productIds
-
[ 4, 61, 6, 195, 75, 50, 188 ] - createdAt
- updatedAt
Overview
wishlists / #215
[
4,
61,
6,
195,
75,
50,
188
]
Summer Picks
#215
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/215" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/215"
);
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/215"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/215"
)
wishlist = res.json()
Response
{
"id": 215,
"userId": 225,
"name": "Summer Picks",
"isPublic": true,
"productIds": [
4,
61,
6,
195,
75,
50,
188
],
"createdAt": "2024-09-27T08:08:16.406Z",
"updatedAt": "2025-07-06T23:00:03.538Z"
}