example-data.com

wishlists / #3

userId
Amina King @amina_king41
name
Holiday Gifts
isPublic
false
productIds
[
  151,
  176,
  13,
  19,
  36,
  67,
  47,
  37,
  105,
  22,
  43,
  53,
  85
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/3"
)
wishlist = res.json()
{
  "id": 3,
  "userId": 2,
  "name": "Holiday Gifts",
  "isPublic": false,
  "productIds": [
    151,
    176,
    13,
    19,
    36,
    67,
    47,
    37,
    105,
    22,
    43,
    53,
    85
  ],
  "createdAt": "2024-12-16T18:38:21.089Z",
  "updatedAt": "2026-01-19T07:31:44.120Z"
}
Draftbit