Gift Ideas
- userId
-
Webster Skiles @webster_skiles39
- name
- Gift Ideas
- isPublic
- false
- productIds
-
[ 11, 78, 75, 25, 12, 19, 36, 67, 196 ] - createdAt
- updatedAt
Overview
wishlists / #6
[
11,
78,
75,
25,
12,
19,
36,
67,
196
]
Gift Ideas
#6
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/6" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/6" ); 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/6"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/6"
)
wishlist = res.json() Response
{
"id": 6,
"userId": 5,
"name": "Gift Ideas",
"isPublic": false,
"productIds": [
11,
78,
75,
25,
12,
19,
36,
67,
196
],
"createdAt": "2026-02-15T22:54:38.196Z",
"updatedAt": "2026-03-14T02:05:18.089Z"
}