Favourites
- userId
-
Daren Lockman @daren_lockman67
- name
- Favourites
- isPublic
- true
- productIds
-
[ 113, 109, 57, 61, 101, 125, 71, 34, 110 ] - createdAt
- updatedAt
Overview
wishlists / #121
[
113,
109,
57,
61,
101,
125,
71,
34,
110
]
Favourites
#121
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/121" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/121"
);
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/121"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/121"
)
wishlist = res.json()
Response
{
"id": 121,
"userId": 116,
"name": "Favourites",
"isPublic": true,
"productIds": [
113,
109,
57,
61,
101,
125,
71,
34,
110
],
"createdAt": "2025-10-17T14:43:31.266Z",
"updatedAt": "2026-04-18T12:56:02.423Z"
}