example-data.com

wishlists / #228

userId
Cruz Okuneva @cruz.okuneva
name
Summer Picks
isPublic
false
productIds
[
  195,
  52,
  82,
  98,
  76,
  71,
  23,
  66,
  2,
  111,
  45,
  131,
  3,
  22
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/228"
)
wishlist = res.json()
{
  "id": 228,
  "userId": 239,
  "name": "Summer Picks",
  "isPublic": false,
  "productIds": [
    195,
    52,
    82,
    98,
    76,
    71,
    23,
    66,
    2,
    111,
    45,
    131,
    3,
    22
  ],
  "createdAt": "2026-02-19T03:09:05.776Z",
  "updatedAt": "2026-05-05T15:28:14.467Z"
}
Draftbit