Favourites
- userId
-
Filiberto Fay @filiberto.fay59
- name
- Favourites
- isPublic
- false
- productIds
-
[ 128, 94, 108, 106, 147, 72, 58, 172, 198, 185 ] - createdAt
- updatedAt
Overview
wishlists / #90
[
128,
94,
108,
106,
147,
72,
58,
172,
198,
185
]
Favourites
#90
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/90" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/90" ); 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/90"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/90"
)
wishlist = res.json() Response
{
"id": 90,
"userId": 92,
"name": "Favourites",
"isPublic": false,
"productIds": [
128,
94,
108,
106,
147,
72,
58,
172,
198,
185
],
"createdAt": "2024-10-05T13:07:38.095Z",
"updatedAt": "2025-10-01T07:38:10.271Z"
}