example-data.com

wishlists / #6

userId
Webster Skiles @webster_skiles39
name
Gift Ideas
isPublic
false
productIds
[
  11,
  78,
  75,
  25,
  12,
  19,
  36,
  67,
  196
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/6"
)
wishlist = res.json()
{
  "id": 6,
  "userId": 5,
  "name": "Gift Ideas",
  "isPublic": false,
  "productIds": [
    11,
    78,
    75,
    25,
    12,
    19,
    36,
    67,
    196
  ],
  "createdAt": "2026-02-15T22:54:38.196Z",
  "updatedAt": "2026-03-14T02:05:18.089Z"
}
Draftbit