example-data.com

wishlists / #238

userId
Michale Hilpert @michale_hilpert62
name
Holiday Gifts
isPublic
false
productIds
[
  37,
  85,
  130,
  19,
  77
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/238"
)
wishlist = res.json()
{
  "id": 238,
  "userId": 250,
  "name": "Holiday Gifts",
  "isPublic": false,
  "productIds": [
    37,
    85,
    130,
    19,
    77
  ],
  "createdAt": "2026-05-16T17:43:44.635Z",
  "updatedAt": "2026-05-21T04:45:22.600Z"
}
Draftbit