Pricing Control and Quote Delivery

Admins manage pricing in the dashboard. The configurator consumes the public pricing API.

Admin Dashboard

Secure credentials-based access for editing the full pricing dataset and publishing updates back to Upstash Redis in one save.

Open dashboard

Public Pricing API

Server endpoint used by the configurator as the single source of truth for live pricing data.

View endpoint

Configurator integration example

fetch('/api/pricing', {
  method: 'GET',
  headers: {
    'Content-Type': 'application/json',
  },
})
  .then((response) => response.json())
  .then((pricing) => {
    console.log('Configurator pricing data:', pricing);
  });