Want Later
- userId
-
Allan Buckridge @allan_buckridge
- name
- Want Later
- isPublic
- false
- productIds
-
[ 149, 96, 124, 152 ] - createdAt
- updatedAt
Overview
wishlists / #110
[
149,
96,
124,
152
]
Want Later
#110
Request
curl example
curl -sS \ "https://example-data.com/api/v1/wishlists/110" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/wishlists/110" ); 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/110"
);
const wishlist = (await res.json()) as Wishlist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/wishlists/110"
)
wishlist = res.json() Response
{
"id": 110,
"userId": 106,
"name": "Want Later",
"isPublic": false,
"productIds": [
149,
96,
124,
152
],
"createdAt": "2026-02-18T08:43:16.612Z",
"updatedAt": "2026-02-19T05:43:40.899Z"
}