Tech Gadgets
- userId
-
Alex Lang @alex_lang85
- name
- Tech Gadgets
- isPublic
- false
- productIds
-
[ 16, 119, 126, 95, 19, 35 ] - createdAt
- updatedAt
Overview
wishlists / #156
[
16,
119,
126,
95,
19,
35
]
Tech Gadgets
#156
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/156" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/156"
);
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/156"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/156"
)
wishlist = res.json()
Response
{
"id": 156,
"userId": 163,
"name": "Tech Gadgets",
"isPublic": false,
"productIds": [
16,
119,
126,
95,
19,
35
],
"createdAt": "2025-09-19T22:19:07.687Z",
"updatedAt": "2026-05-05T11:47:14.121Z"
}