example-data.com

wishlists / #115

userId
Marta Harvey @marta.harvey68
name
Summer Picks
isPublic
false
productIds
[
  41,
  29
]
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/wishlists/115"
)
wishlist = res.json()
{
  "id": 115,
  "userId": 112,
  "name": "Summer Picks",
  "isPublic": false,
  "productIds": [
    41,
    29
  ],
  "createdAt": "2025-06-18T15:02:04.263Z",
  "updatedAt": "2025-06-21T13:28:59.556Z"
}
Draftbit