Back to School
- userId
-
Arnaldo Friesen @arnaldo_friesen78
- name
- Back to School
- isPublic
- false
- productIds
-
[ 38, 137, 121, 97 ] - createdAt
- updatedAt
Overview
wishlists / #117
[
38,
137,
121,
97
]
Back to School
#117
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/117" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/117" ); 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/117"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/117"
)
wishlist = res.json() Response
{
"id": 117,
"userId": 113,
"name": "Back to School",
"isPublic": false,
"productIds": [
38,
137,
121,
97
],
"createdAt": "2024-06-14T16:02:23.658Z",
"updatedAt": "2025-09-05T13:10:43.489Z"
}