example-data.com

wishlists / #35

userId
Conrad Connelly @conrad.connelly22
name
Home Decor
isPublic
false
productIds
[
  62,
  17,
  158,
  133,
  134,
  123,
  8,
  116,
  185,
  57,
  75,
  179,
  83,
  20
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/35"
)
wishlist = res.json()
{
  "id": 35,
  "userId": 30,
  "name": "Home Decor",
  "isPublic": false,
  "productIds": [
    62,
    17,
    158,
    133,
    134,
    123,
    8,
    116,
    185,
    57,
    75,
    179,
    83,
    20
  ],
  "createdAt": "2026-03-25T19:16:44.038Z",
  "updatedAt": "2026-05-16T20:23:04.395Z"
}
Draftbit