Gift Ideas
- userId
-
Wendy Borer @wendy_borer
- name
- Gift Ideas
- isPublic
- true
- productIds
-
[ 65, 34, 159, 125, 143, 146, 79 ] - createdAt
- updatedAt
Overview
wishlists / #138
[
65,
34,
159,
125,
143,
146,
79
]
Gift Ideas
#138
Request
curl example
curl -sS \
"https://example-data.com/api/v1/wishlists/138" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/wishlists/138"
);
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/138"
);
const wishlist = (await res.json()) as Wishlist;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/138"
)
wishlist = res.json()
Response
{
"id": 138,
"userId": 141,
"name": "Gift Ideas",
"isPublic": true,
"productIds": [
65,
34,
159,
125,
143,
146,
79
],
"createdAt": "2025-06-18T07:10:54.865Z",
"updatedAt": "2025-08-28T12:22:17.334Z"
}