example-data.com

wishlists / #161

userId
Vincenza Zemlak-Collier @vincenza_zemlak-collier
name
Holiday Gifts
isPublic
false
productIds
[
  190,
  104
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/161"
)
wishlist = res.json()
{
  "id": 161,
  "userId": 168,
  "name": "Holiday Gifts",
  "isPublic": false,
  "productIds": [
    190,
    104
  ],
  "createdAt": "2025-07-03T05:18:47.674Z",
  "updatedAt": "2025-08-12T01:17:57.023Z"
}
Draftbit