example-data.com

wishlists / #184

userId
Lavonne Schmidt @lavonne.schmidt95
name
Summer Picks
isPublic
false
productIds
[
  122,
  196,
  88,
  41,
  173,
  67,
  10,
  97,
  100,
  121
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/184"
)
wishlist = res.json()
{
  "id": 184,
  "userId": 192,
  "name": "Summer Picks",
  "isPublic": false,
  "productIds": [
    122,
    196,
    88,
    41,
    173,
    67,
    10,
    97,
    100,
    121
  ],
  "createdAt": "2025-03-22T18:02:14.636Z",
  "updatedAt": "2026-02-24T02:34:55.080Z"
}
Draftbit