example-data.com

wishlists / #191

userId
Kennith Hahn @kennith.hahn
name
Saved for Later
isPublic
true
productIds
[
  63,
  42,
  129,
  58,
  176,
  9,
  98,
  80,
  186,
  145,
  153,
  194
]
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/wishlists/191" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/wishlists/191"
);
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/191"
);
const wishlist = (await res.json()) as Wishlist;
import requests

res = requests.get(
    "https://example-data.com/api/v1/wishlists/191"
)
wishlist = res.json()
{
  "id": 191,
  "userId": 201,
  "name": "Saved for Later",
  "isPublic": true,
  "productIds": [
    63,
    42,
    129,
    58,
    176,
    9,
    98,
    80,
    186,
    145,
    153,
    194
  ],
  "createdAt": "2025-10-29T00:47:52.572Z",
  "updatedAt": "2026-04-11T05:09:26.505Z"
}
Draftbit