example-data.com

wishlists / #36

userId
Kariane Schmitt @kariane.schmitt97
name
Tech Gadgets
isPublic
false
productIds
[
  9,
  108,
  173,
  192,
  12,
  94,
  40,
  140,
  2,
  89,
  92,
  85,
  161,
  5
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/36"
)
wishlist = res.json()
{
  "id": 36,
  "userId": 32,
  "name": "Tech Gadgets",
  "isPublic": false,
  "productIds": [
    9,
    108,
    173,
    192,
    12,
    94,
    40,
    140,
    2,
    89,
    92,
    85,
    161,
    5
  ],
  "createdAt": "2026-01-08T04:09:32.140Z",
  "updatedAt": "2026-03-17T21:47:43.289Z"
}
Draftbit