example-data.com

wishlists / #38

userId
Lenny Howe @lenny.howe
name
Holiday Gifts
isPublic
true
productIds
[
  63,
  187,
  151,
  43,
  197,
  163
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/38"
)
wishlist = res.json()
{
  "id": 38,
  "userId": 37,
  "name": "Holiday Gifts",
  "isPublic": true,
  "productIds": [
    63,
    187,
    151,
    43,
    197,
    163
  ],
  "createdAt": "2025-11-15T16:17:10.008Z",
  "updatedAt": "2026-02-04T20:27:55.256Z"
}
Draftbit