example-data.com

wishlists / #230

userId
Marcelina Grady @marcelina_grady19
name
Saved for Later
isPublic
true
productIds
[
  95,
  108,
  141,
  146,
  104,
  150
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/230"
)
wishlist = res.json()
{
  "id": 230,
  "userId": 241,
  "name": "Saved for Later",
  "isPublic": true,
  "productIds": [
    95,
    108,
    141,
    146,
    104,
    150
  ],
  "createdAt": "2025-05-30T14:25:54.796Z",
  "updatedAt": "2026-01-18T06:48:11.672Z"
}
Draftbit