example-data.com

wishlists / #90

userId
Filiberto Fay @filiberto.fay59
name
Favourites
isPublic
false
productIds
[
  128,
  94,
  108,
  106,
  147,
  72,
  58,
  172,
  198,
  185
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/90"
)
wishlist = res.json()
{
  "id": 90,
  "userId": 92,
  "name": "Favourites",
  "isPublic": false,
  "productIds": [
    128,
    94,
    108,
    106,
    147,
    72,
    58,
    172,
    198,
    185
  ],
  "createdAt": "2024-10-05T13:07:38.095Z",
  "updatedAt": "2025-10-01T07:38:10.271Z"
}
Draftbit