Tech Gadgets
- userId
-
Cassidy Boehm @cassidy_boehm22
- name
- Tech Gadgets
- isPublic
- true
- productIds
-
[ 138, 33, 89, 122, 199, 75, 44, 188 ] - createdAt
- updatedAt
Overview
wishlists / #194
[
138,
33,
89,
122,
199,
75,
44,
188
]
Tech Gadgets
#194
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/194" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/194"
);
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/194"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/194"
)
wishlist = res.json()
Response
{
"id": 194,
"userId": 204,
"name": "Tech Gadgets",
"isPublic": true,
"productIds": [
138,
33,
89,
122,
199,
75,
44,
188
],
"createdAt": "2025-05-08T04:55:20.624Z",
"updatedAt": "2026-03-24T07:11:03.935Z"
}