Tech Gadgets
- userId
-
Kariane Schmitt @kariane.schmitt97
- name
- Tech Gadgets
- isPublic
- false
- productIds
-
[ 9, 108, 173, 192, 12, 94, 40, 140, 2, 89, 92, 85, 161, 5 ] - createdAt
- updatedAt
Overview
wishlists / #36
[
9,
108,
173,
192,
12,
94,
40,
140,
2,
89,
92,
85,
161,
5
]
Tech Gadgets
#36
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/36" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/36" ); 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/36"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/36"
)
wishlist = res.json() Response
{
"id": 36,
"userId": 32,
"name": "Tech Gadgets",
"isPublic": false,
"productIds": [
9,
108,
173,
192,
12,
94,
40,
140,
2,
89,
92,
85,
161,
5
],
"createdAt": "2026-01-08T04:09:32.140Z",
"updatedAt": "2026-03-17T21:47:43.289Z"
}