example-data.com

wishlists / #194

userId
Cassidy Boehm @cassidy_boehm22
name
Tech Gadgets
isPublic
true
productIds
[
  138,
  33,
  89,
  122,
  199,
  75,
  44,
  188
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/194"
)
wishlist = res.json()
{
  "id": 194,
  "userId": 204,
  "name": "Tech Gadgets",
  "isPublic": true,
  "productIds": [
    138,
    33,
    89,
    122,
    199,
    75,
    44,
    188
  ],
  "createdAt": "2025-05-08T04:55:20.624Z",
  "updatedAt": "2026-03-24T07:11:03.935Z"
}
Draftbit