example-data.com

wishlists / #99

userId
Esperanza Casper @esperanza_casper
name
Home Decor
isPublic
true
productIds
[
  70,
  117,
  186,
  190,
  84,
  108,
  181
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/99"
)
wishlist = res.json()
{
  "id": 99,
  "userId": 97,
  "name": "Home Decor",
  "isPublic": true,
  "productIds": [
    70,
    117,
    186,
    190,
    84,
    108,
    181
  ],
  "createdAt": "2025-05-06T09:07:26.077Z",
  "updatedAt": "2026-04-30T09:46:42.556Z"
}
Draftbit