example-data.com

wishlists / #163

userId
Kaleb Schmidt @kaleb.schmidt
name
Summer Picks
isPublic
false
productIds
[
  84,
  135,
  99,
  128,
  125,
  66,
  141,
  122,
  138,
  34,
  198,
  139,
  20,
  169,
  10
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/163"
)
wishlist = res.json()
{
  "id": 163,
  "userId": 171,
  "name": "Summer Picks",
  "isPublic": false,
  "productIds": [
    84,
    135,
    99,
    128,
    125,
    66,
    141,
    122,
    138,
    34,
    198,
    139,
    20,
    169,
    10
  ],
  "createdAt": "2025-10-11T10:52:28.262Z",
  "updatedAt": "2025-12-03T05:04:46.524Z"
}
Draftbit