Back to School
- userId
-
Bradford Doyle @bradford.doyle42
- name
- Back to School
- isPublic
- true
- productIds
-
[ 104, 18, 21 ] - createdAt
- updatedAt
Overview
wishlists / #81
[
104,
18,
21
]
Back to School
#81
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/81" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/81" ); 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/81"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/81"
)
wishlist = res.json() Response
{
"id": 81,
"userId": 79,
"name": "Back to School",
"isPublic": true,
"productIds": [
104,
18,
21
],
"createdAt": "2025-06-23T01:20:21.994Z",
"updatedAt": "2026-01-29T22:05:10.484Z"
}