Admin Dashboard
Secure credentials-based access for editing the full pricing dataset and publishing updates back to Upstash Redis in one save.
Open dashboard
Admins manage pricing in the dashboard. The configurator consumes the public pricing API.
Secure credentials-based access for editing the full pricing dataset and publishing updates back to Upstash Redis in one save.
Open dashboardServer endpoint used by the configurator as the single source of truth for live pricing data.
View endpointfetch('/api/pricing', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
})
.then((response) => response.json())
.then((pricing) => {
console.log('Configurator pricing data:', pricing);
});