Gift Ideas
- userId
-
Fatima Dicki @fatima_dicki
- name
- Gift Ideas
- isPublic
- false
- productIds
-
[ 181, 150, 156, 116 ] - createdAt
- updatedAt
Overview
wishlists / #169
[
181,
150,
156,
116
]
Gift Ideas
#169
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/169" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/169"
);
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/169"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/169"
)
wishlist = res.json()
Response
{
"id": 169,
"userId": 176,
"name": "Gift Ideas",
"isPublic": false,
"productIds": [
181,
150,
156,
116
],
"createdAt": "2026-02-23T10:52:34.860Z",
"updatedAt": "2026-03-31T19:29:18.870Z"
}