Tech Gadgets
- userId
-
Velma Jerde @velma.jerde56
- name
- Tech Gadgets
- isPublic
- false
- productIds
-
[ 185, 132 ] - createdAt
- updatedAt
Overview
wishlists / #92
[
185,
132
]
Tech Gadgets
#92
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/92" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/92" ); 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/92"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/92"
)
wishlist = res.json() Response
{
"id": 92,
"userId": 93,
"name": "Tech Gadgets",
"isPublic": false,
"productIds": [
185,
132
],
"createdAt": "2026-04-03T12:13:09.362Z",
"updatedAt": "2026-04-08T19:19:31.065Z"
}