Tech Gadgets
- userId
-
Tabitha McKenzie @tabitha_mckenzie
- name
- Tech Gadgets
- isPublic
- false
- productIds
-
[ 63, 110, 130, 153, 9, 172, 192, 11, 173, 169, 14, 90, 197, 26, 66 ] - createdAt
- updatedAt
Overview
wishlists / #100
[
63,
110,
130,
153,
9,
172,
192,
11,
173,
169,
14,
90,
197,
26,
66
]
Tech Gadgets
#100
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/100" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/100" ); 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/100"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/100"
)
wishlist = res.json() Response
{
"id": 100,
"userId": 98,
"name": "Tech Gadgets",
"isPublic": false,
"productIds": [
63,
110,
130,
153,
9,
172,
192,
11,
173,
169,
14,
90,
197,
26,
66
],
"createdAt": "2025-08-03T12:00:20.784Z",
"updatedAt": "2026-01-20T04:18:45.727Z"
}