Summer Picks
- userId
-
Charlene Roberts @charlene_roberts
- name
- Summer Picks
- isPublic
- true
- productIds
-
[ 47, 86, 28, 137, 59, 95, 111, 135, 158, 174 ] - createdAt
- updatedAt
Overview
wishlists / #1
[
47,
86,
28,
137,
59,
95,
111,
135,
158,
174
]
Summer Picks
#1
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/1" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/1" ); 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/1"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/1"
)
wishlist = res.json() Response
{
"id": 1,
"userId": 1,
"name": "Summer Picks",
"isPublic": true,
"productIds": [
47,
86,
28,
137,
59,
95,
111,
135,
158,
174
],
"createdAt": "2026-04-04T17:14:46.340Z",
"updatedAt": "2026-04-13T03:20:44.226Z"
}