example-data.com

wishlists / #100

userId
Tabitha McKenzie @tabitha_mckenzie
name
Tech Gadgets
isPublic
false
productIds
[
  63,
  110,
  130,
  153,
  9,
  172,
  192,
  11,
  173,
  169,
  14,
  90,
  197,
  26,
  66
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/100"
)
wishlist = res.json()
{
  "id": 100,
  "userId": 98,
  "name": "Tech Gadgets",
  "isPublic": false,
  "productIds": [
    63,
    110,
    130,
    153,
    9,
    172,
    192,
    11,
    173,
    169,
    14,
    90,
    197,
    26,
    66
  ],
  "createdAt": "2025-08-03T12:00:20.784Z",
  "updatedAt": "2026-01-20T04:18:45.727Z"
}
Draftbit