Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns the pricing catalogue for every active metric across every tariff. The tariffs[].isMine flag marks the tariff currently assigned to the calling organisation so the UI can highlight the relevant column.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
tariffsobject[]RequiredTariffs ordered by display position, then id.
idnumberRequiredTariff ID in cas__tariff.
codestringRequiredTariff code (free, startup, business, enterprise).
monthlyPriceCzknumberRequiredCatalogue monthly price in whole CZK.
priceFrombooleanRequiredTrue = "od" pricing (Enterprise), real price negotiated per org.
isMinebooleanRequiredTrue when this tariff is the one currently assigned to the caller.
metricsobject[]RequiredcodestringRequiredMetric code (e.g. storage_bytes).
labelCsstringRequiredCzech display label.
labelEnstringRequiredEnglish display label.
unitCodestringRequiredRaw base unit (B, requests, tokens, emails, orders).
aggregation"sum" | "snapshot"RequiredHow usage is aggregated for this metric.
positionnumberRequiredDisplay order in the report.
cellsobject[]RequiredSame length and order as tariffs.
tariffCodestringRequiredTariff this cell belongs to (matches tariffs[].code).
includedUnitsnumberRequiredFree allowance included in the tariff.
packageSizenumberRequiredOverage package size in the metric's base unit.
packagePriceCzknumberRequiredPrice per overage package in whole CZK.
isUnlimitedbooleanRequiredTrue = no cap, no charge (Enterprise).
isEnabledbooleanRequiredFalse = metric not sold on this tariff.
{
"tariffs": [
{
"id": 0,
"code": "example_code",
"monthlyPriceCzk": 0,
"priceFrom": false,
"isMine": false
}
],
"metrics": [
{
"code": "example_code",
"labelCs": "example_labelCs",
"labelEn": "example_labelEn",
"unitCode": "example_unitCode",
"position": 0,
"cells": [
{
"tariffCode": "example_tariffCode",
"includedUnits": 0,
"packageSize": 0,
"packagePriceCzk": 0,
"isUnlimited": false,
"isEnabled": false
}
]
}
]
}GET /bff/billing/pricing-matrix
curl -X GET "https://api.bizkithub.com/bff/billing/pricing-matrix" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.