Tech Gadgets
- userId
-
Simeon Robel @simeon_robel12
- name
- Tech Gadgets
- isPublic
- false
- productIds
-
[ 185, 112, 60, 76, 13, 162, 41, 9, 197, 125, 20, 11, 103, 40 ] - createdAt
- updatedAt
Overview
wishlists / #61
[
185,
112,
60,
76,
13,
162,
41,
9,
197,
125,
20,
11,
103,
40
]
Tech Gadgets
#61
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/61" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/61" ); 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/61"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/61"
)
wishlist = res.json() Response
{
"id": 61,
"userId": 55,
"name": "Tech Gadgets",
"isPublic": false,
"productIds": [
185,
112,
60,
76,
13,
162,
41,
9,
197,
125,
20,
11,
103,
40
],
"createdAt": "2026-02-17T11:45:28.656Z",
"updatedAt": "2026-03-07T21:53:52.807Z"
}