example-data.com

wishlists / #44

userId
Trace Witting-Stamm @trace_witting-stamm17
name
Want Later
isPublic
true
productIds
[
  27,
  175,
  72,
  80,
  151,
  69,
  97,
  94,
  73,
  196
]
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/wishlists/44" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/wishlists/44"
);
const wishlist = await res.json();
import type { Wishlist } from "https://example-data.com/types/wishlists.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/wishlists/44"
);
const wishlist = (await res.json()) as Wishlist;
import requests

res = requests.get(
    "https://example-data.com/api/v1/wishlists/44"
)
wishlist = res.json()
{
  "id": 44,
  "userId": 42,
  "name": "Want Later",
  "isPublic": true,
  "productIds": [
    27,
    175,
    72,
    80,
    151,
    69,
    97,
    94,
    73,
    196
  ],
  "createdAt": "2026-05-18T15:27:07.717Z",
  "updatedAt": "2026-05-20T10:17:41.812Z"
}
Draftbit