example-data.com

wishlists / #147

userId
Jonathan Howe @jonathan_howe77
name
Holiday Gifts
isPublic
true
productIds
[
  59,
  193,
  50,
  9,
  155,
  99
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/147"
)
wishlist = res.json()
{
  "id": 147,
  "userId": 150,
  "name": "Holiday Gifts",
  "isPublic": true,
  "productIds": [
    59,
    193,
    50,
    9,
    155,
    99
  ],
  "createdAt": "2026-05-13T14:44:26.976Z",
  "updatedAt": "2026-05-21T10:13:10.077Z"
}
Draftbit