example-data.com
Menu
Browse docs and collections

Overview

wishlists / #124

Component variants

Related

Request

curl example

          curl -sS \
  "https://example-data.com/api/v1/wishlists/124" \
  -H "Accept: application/json"
        

JavaScript example

          const res = await fetch(
  "https://example-data.com/api/v1/wishlists/124"
);
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/124"
);
const wishlist = (await res.json()) as Wishlist;
        

Python example

          import requests

res = requests.get(
    "https://example-data.com/api/v1/wishlists/124"
)
wishlist = res.json()
        

Response

{
  "id": 124,
  "userId": 121,
  "name": "Want Later",
  "isPublic": false,
  "productIds": [
    121,
    171
  ],
  "createdAt": "2026-04-27T19:26:56.502Z",
  "updatedAt": "2026-05-06T11:45:26.427Z"
}