example-data.com

wishlists / #188

userId
Tabitha Ruecker @tabitha.ruecker
name
Holiday Gifts
isPublic
true
productIds
[
  68,
  105,
  88,
  77,
  26,
  50,
  114,
  160,
  51,
  60,
  86,
  83,
  85,
  131
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/188"
)
wishlist = res.json()
{
  "id": 188,
  "userId": 197,
  "name": "Holiday Gifts",
  "isPublic": true,
  "productIds": [
    68,
    105,
    88,
    77,
    26,
    50,
    114,
    160,
    51,
    60,
    86,
    83,
    85,
    131
  ],
  "createdAt": "2026-01-06T19:49:43.386Z",
  "updatedAt": "2026-02-24T18:11:57.762Z"
}
Draftbit