example-data.com

wishlists / #160

userId
Vincenza Zemlak-Collier @vincenza_zemlak-collier
name
Home Decor
isPublic
true
productIds
[
  70,
  152,
  187,
  60,
  75,
  99,
  163,
  164,
  48,
  127,
  51,
  165,
  40,
  143,
  156
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/160"
)
wishlist = res.json()
{
  "id": 160,
  "userId": 168,
  "name": "Home Decor",
  "isPublic": true,
  "productIds": [
    70,
    152,
    187,
    60,
    75,
    99,
    163,
    164,
    48,
    127,
    51,
    165,
    40,
    143,
    156
  ],
  "createdAt": "2026-04-12T07:13:46.288Z",
  "updatedAt": "2026-05-02T20:35:58.567Z"
}
Draftbit