Back to School
- userId
-
Einar Volkman @einar_volkman69
- name
- Back to School
- isPublic
- false
- productIds
-
[ 181, 128, 45, 81, 163 ] - createdAt
- updatedAt
Overview
wishlists / #8
[
181,
128,
45,
81,
163
]
Back to School
#8
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/8" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/8" ); 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/8"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/8"
)
wishlist = res.json() Response
{
"id": 8,
"userId": 7,
"name": "Back to School",
"isPublic": false,
"productIds": [
181,
128,
45,
81,
163
],
"createdAt": "2026-02-23T02:10:00.171Z",
"updatedAt": "2026-04-30T03:25:32.690Z"
}