example-data.com

wishlists / #175

userId
Lazaro Herzog @lazaro_herzog
name
Holiday Gifts
isPublic
false
productIds
[
  155,
  82,
  94,
  190,
  3
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/175"
)
wishlist = res.json()
{
  "id": 175,
  "userId": 181,
  "name": "Holiday Gifts",
  "isPublic": false,
  "productIds": [
    155,
    82,
    94,
    190,
    3
  ],
  "createdAt": "2024-12-16T23:06:10.874Z",
  "updatedAt": "2025-07-01T11:43:30.989Z"
}
Draftbit