example-data.com

wishlists / #77

userId
Candace Mueller @candace.mueller
name
Gift Ideas
isPublic
false
productIds
[
  137,
  158,
  18,
  51,
  44,
  63,
  116,
  96,
  120,
  122,
  88,
  19,
  194,
  105,
  5
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/77"
)
wishlist = res.json()
{
  "id": 77,
  "userId": 75,
  "name": "Gift Ideas",
  "isPublic": false,
  "productIds": [
    137,
    158,
    18,
    51,
    44,
    63,
    116,
    96,
    120,
    122,
    88,
    19,
    194,
    105,
    5
  ],
  "createdAt": "2025-04-14T15:32:28.813Z",
  "updatedAt": "2025-06-02T22:39:31.687Z"
}
Draftbit