example-data.com

wishlists / #48

userId
Everett Yundt @everett_yundt11
name
Favourites
isPublic
true
productIds
[
  37,
  130,
  24,
  108,
  87,
  149,
  150,
  181,
  143
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/48"
)
wishlist = res.json()
{
  "id": 48,
  "userId": 44,
  "name": "Favourites",
  "isPublic": true,
  "productIds": [
    37,
    130,
    24,
    108,
    87,
    149,
    150,
    181,
    143
  ],
  "createdAt": "2025-07-21T10:13:01.226Z",
  "updatedAt": "2025-12-09T04:22:41.486Z"
}
Draftbit