Tech Gadgets
- userId
-
Vida Kunde-Koepp @vida_kunde-koepp95
- name
- Tech Gadgets
- isPublic
- false
- productIds
-
[ 10, 40, 129, 134, 21 ] - createdAt
- updatedAt
Overview
wishlists / #112
[
10,
40,
129,
134,
21
]
Tech Gadgets
#112
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/112" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/112" ); 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/112"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/112"
)
wishlist = res.json() Response
{
"id": 112,
"userId": 109,
"name": "Tech Gadgets",
"isPublic": false,
"productIds": [
10,
40,
129,
134,
21
],
"createdAt": "2025-07-31T21:25:07.639Z",
"updatedAt": "2025-08-01T23:00:54.381Z"
}