example-data.com

wishlists / #53

userId
Maymie Boehm @maymie.boehm90
name
Holiday Gifts
isPublic
false
productIds
[
  81,
  71,
  112,
  63,
  15,
  99,
  97,
  43,
  106,
  147,
  17,
  72
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/53"
)
wishlist = res.json()
{
  "id": 53,
  "userId": 48,
  "name": "Holiday Gifts",
  "isPublic": false,
  "productIds": [
    81,
    71,
    112,
    63,
    15,
    99,
    97,
    43,
    106,
    147,
    17,
    72
  ],
  "createdAt": "2026-01-11T22:48:08.070Z",
  "updatedAt": "2026-04-08T15:23:40.812Z"
}
Draftbit