BizKitHub
DocsAPI ReferenceBilling/bff/billing/pricing-matrix
getBillingAdmin BFF

/bff/billing/pricing-matrix

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.

BillinggetBffBillingPricing-matrix

Parameters

No parameters required

This endpoint takes no path, query, header or body parameters.

Response schema

1 status code documented

200Success
tariffsobject[]Required

Tariffs ordered by display position, then id.

Each array item:
idnumberRequired

Tariff ID in cas__tariff.

codestringRequired

Tariff code (free, startup, business, enterprise).

monthlyPriceCzknumberRequired

Catalogue monthly price in whole CZK.

priceFrombooleanRequired

True = "od" pricing (Enterprise), real price negotiated per org.

isMinebooleanRequired

True when this tariff is the one currently assigned to the caller.

metricsobject[]Required
Each array item:
codestringRequired

Metric code (e.g. storage_bytes).

labelCsstringRequired

Czech display label.

labelEnstringRequired

English display label.

unitCodestringRequired

Raw base unit (B, requests, tokens, emails, orders).

aggregation"sum" | "snapshot"Required

How usage is aggregated for this metric.

positionnumberRequired

Display order in the report.

cellsobject[]Required

Same length and order as tariffs.

Each array item:
tariffCodestringRequired

Tariff this cell belongs to (matches tariffs[].code).

includedUnitsnumberRequired

Free allowance included in the tariff.

packageSizenumberRequired

Overage package size in the metric's base unit.

packagePriceCzknumberRequired

Price per overage package in whole CZK.

isUnlimitedbooleanRequired

True = no cap, no charge (Enterprise).

isEnabledbooleanRequired

False = metric not sold on this tariff.

Response example

application/json
{
  "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
        }
      ]
    }
  ]
}

Request example

GET /bff/billing/pricing-matrix

get
curl -X GET "https://api.bizkithub.com/bff/billing/pricing-matrix" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key