example-data.com

wishlists / #162

userId
Kamryn Rogahn @kamryn_rogahn40
name
Holiday Gifts
isPublic
false
productIds
[
  109,
  157,
  33,
  166,
  59,
  110,
  68
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/162"
)
wishlist = res.json()
{
  "id": 162,
  "userId": 170,
  "name": "Holiday Gifts",
  "isPublic": false,
  "productIds": [
    109,
    157,
    33,
    166,
    59,
    110,
    68
  ],
  "createdAt": "2025-05-19T22:57:23.151Z",
  "updatedAt": "2025-09-06T07:39:40.832Z"
}
Draftbit