example-data.com

wishlists / #103

userId
Whitney O'Reilly @whitney.oreilly
name
Want Later
isPublic
false
productIds
[
  22,
  134,
  64,
  170,
  19,
  50,
  193,
  69,
  106
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/103"
)
wishlist = res.json()
{
  "id": 103,
  "userId": 99,
  "name": "Want Later",
  "isPublic": false,
  "productIds": [
    22,
    134,
    64,
    170,
    19,
    50,
    193,
    69,
    106
  ],
  "createdAt": "2025-10-30T04:55:00.685Z",
  "updatedAt": "2026-01-28T02:39:26.174Z"
}
Draftbit