tarifbd Operator Guide

tarifbd operator guide: Product & Tariff Catalog daemon (LF role). User-defined energy products (STROM/GAS/WAERME/SOLAR/EEG/EINSPEISUNG/WAERMEPUMPE/WALLBOX/HEMS/EMOBILITY/ENERGIEDIENSTLEISTUNG/BUNDLE/SHARING); all prices in Tarifpreisblatt JSONB; product version history; MaLo→product assignment, 15-min EPEX Spot day-ahead prices for §41a dynamic tariffs.

tarifbd — Product & Tariff Catalog

tarifbd is the single source of truth for everything the LF sells to end customers. billingd and the customer portal query it exclusively for pricing — marktd is never used for retail product pricing.

Port: :9080


Why a separate catalog?

marktd is a B2B MaKo grid communication data hub. Retail tariffs evolve weekly; grid data is annual (BDEW format versions). Mixing them violates the single-responsibility principle and makes §20 EnWG audits harder.

tarifbd mirrors the product catalog pattern of every mature energy billing platform (SAP IS-U FI-CA, powercloud, Wilken ENER:GY): a separate service, its own lifecycle, queried only by billing engines and portals.


Product categories

graph LR
    STROM["STROM<br/>SLP/RLM<br/>Eintarif/Zweitarif<br/>§41a EPEX dynamic"]
    GAS["GAS<br/>§10 Brennwertkorrektur<br/>Energiesteuer + BEHG"]
    WASSER["WASSER<br/>Trinkwasser 7 % USt<br/>gesplittete Abwassergebühr"]
    WAERME["WAERME / SOLAR<br/>Fernwärme · Mieterstrom<br/>§42b EnWG GGV / §21 Abs. 3 EEG"]
    EEG["EEG / EINSPEISUNG<br/>Feed-in Vergütung<br/>Marktprämie / KWKG"]
    SMART["WAERMEPUMPE / WALLBOX<br/>§14a Modul 1/3<br/>(like STROM)"]
    SERV["HEMS / EMOBILITY<br/>ENERGIEDIENSTLEISTUNG<br/>platform + event fees"]
    BUNDLE["BUNDLE<br/>Component references<br/>per-position billing"]
    SHARING["SHARING<br/>§42c EnWG Energy Sharing<br/>community allocation"]
    tarifbd["tarifbd :9080"]
    STROM & GAS & WASSER & WAERME & EEG --> tarifbd
    SMART & SERV & BUNDLE & SHARING --> tarifbd
    tarifbd -->|"GET customer/{malo_id}/product"| billingd["billingd :9280"]
    tarifbd -->|"GET epex-prices/{date}/quarter-hourly"| billingd

Endpoints

MethodPathDescription
PUT/api/v1/products/{lf_mp_id}/{product_code}Upsert product; archives previous version in product_history; validates _typ, _version, enum fields, 30-value preistyp whitelist
GET/api/v1/products/{lf_mp_id}/{product_code}Fetch latest product
DELETE/api/v1/products/{lf_mp_id}/{product_code}Soft-delete — sets valid_to = today; product retained for billing history; excluded from comparison feed
GET/api/v1/products/{lf_mp_id}List products (?category=&sparte=&kundentyp=&include_drafts=&include_expired=)
GET/api/v1/products/{lf_mp_id}/{product_code}/historyImmutable version audit log (includes energiemix history for §42 audit trail)
GET/PUT/api/v1/customer/{malo_id}/productActive product for a MaLo / Tarifwechsel (PUT validates product exists, is PUBLISHED, not expired, and assigned_from >= product.valid_from)
GET/api/v1/customer/{malo_id}/product/historyFull product-assignment history — auditors use this to verify Tarifwechsel Wirksamkeit
PUT/GET/DELETE/api/v1/products/{lf_mp_id}/{product_code}/energiemix§42 EnWG Energiemix sub-resource — does NOT archive product or trigger billing-period changes
GET/api/v1/comparison-feedComparison portal feed — ETag-cached, cursor-paginated tariff listing (PUBLISHED non-expired only); jahreskosten_supply_* for verbrauch_kwh
GET/api/v1/comparison-feed/bo4eBO4E Tarifinfo array — §42d EnWG canonical form; direct import by Verivox / Check24 / BNetzA MTS
PUT/api/v1/epex-prices/{date}Import EPEX day-ahead prices (96/92/100 15-min MTUs, or 24 hourly; idempotent)
GET/api/v1/epex-prices/{date}/quarter-hourly15-min MTU points {mtu_start, price_ct_kwh}
GET/api/v1/epex-prices/{year}/{month}/averageMonthly average — used by einsd Direktvermarktung
PUT/api/v1/nehs-prices/{date}Import a dated nEHS certificate price (EUR/t CO₂) — EEX auction clearing (weekly from 01.07.2026, §10 BEHG corridor 55–65 €/t), Verkaufsphase (68 €) or manual. sourceauktion/verkaufsphase/nachkauf/manual (CHECK-constrained; anything else → 422)
GET/api/v1/nehs-prices/latest?date=Most recent nEHS price at or before date — used by billingd for the Gas CO₂ component (CO2KostAufG §3)
POST/GET/api/v1/angeboteB2B Angebot (quotation) — ANGELEGT→VERSANDT→ANGENOMMEN/ABGELEHNT/ABGELAUFEN
GET/healthLiveness
GET/health/readyReadiness

Registering a product

PUT /api/v1/products/9910000000002/STROM-H0-2026
Content-Type: application/json

{
  "category": "STROM",
  "name": "Strom Zuhause Classic",
  "sparte": "STROM",
  "register_count": "Eintarif",
  "kundentyp": "Haushalt",
  "valid_from": "2026-01-01",
  "data": {
    "_typ": "TARIFPREISBLATT",
    "bezeichnung": "Strom Zuhause Classic 2026",
    "gueltigkeit": { "startdatum": "2026-01-01" },
    "tarifpreispositionen": [
      { "preistyp": "GRUNDPREIS",          "preisstaffeln": [{ "preis": "0.20" }] },
      { "preistyp": "ARBEITSPREIS_EINTARIF", "preisstaffeln": [{ "preis": "0.32" }] }
    ]
  }
}

billingd extracts grundpreis_ct_per_day (20 ct/day) and arbeitspreis_ct_per_kwh (32 ct/kWh) by traversing data.tarifpreispositionen keyed on preistyp.


Assigning a product to a MaLo (Tarifwechsel)

PUT /api/v1/customer/51238696780/product
Content-Type: application/json

{ "product_code": "STROM-H0-2026", "assigned_from": "2026-07-01" }

The previous assignment is automatically closed (assigned_to = 2026-07-01). GET /api/v1/customer/{malo_id}/product returns the active product with the full data JSONB — billingd calls this at the start of every billing run.


§41a EPEX Spot feed

The SDAC day-ahead auction settles on 15-minute Market Time Units (MTU) since 2025-10-01 (EPEX SPOT go-live) — 96 quarter-hours per delivery day (92/100 on the DST days). Import the day-ahead prices daily (D-1) as an ordered array of the delivery day's MTUs, in UTC-instant order (= local wall-clock order). mtu_minutes defaults to 15; legacy 60-minute source data is accepted and expanded to quarter-hours on fetch.

# Import 2026-07-15 (96 quarter-hour prices, ct/kWh)
curl -s -X PUT "http://tarifbd:9080/api/v1/epex-prices/2026-07-15" \
  -H "Content-Type: application/json" \
  -d '{
    "prices": [6.2, 6.1, 6.0, 5.9, /* … 96 entries … */ 6.5],
    "mtu_minutes": 15,
    "source": "entsoe-transparency"
  }'

For billingd dynamic billing: GET /api/v1/epex-prices/2026-07-15/quarter-hourly returns the day's 15-min points, each { mtu_start (UTC RFC3339), price_ct_kwh }, for the 15-min Lastgang × EPEX-MTU multiplication (§41a pipeline). The price map is keyed on the UTC MTU start (DST-safe).

For einsd Direktvermarktung: GET /api/v1/epex-prices/2026/7/average returns the monthly average used in max(0, AW − EPEX).


Comparison portal feed

GET /api/v1/comparison-feed returns a machine-readable tariff listing for Verivox, Check24, BNetzA Markttransparenzstelle, and similar integrators. The feed is also compliant with §42d EnWG (mandatory machine-readable tariff publication since 2024).

Each entry includes a tarifinfo field — a pre-built BO4E Tarifinfo Business Object that portals can import directly without custom ETL. For portals that require a pure BO4E array, use GET /api/v1/comparison-feed/bo4e.

BO4E Tarifinfo endpoint (§42d EnWG canonical form)

GET /api/v1/comparison-feed/bo4e returns the same products but wrapped entirely in standard BO4E Tarifinfo objects — the format Verivox, Check24, and the BNetzA Markttransparenzstelle can import schema-validated without any custom transformation.

curl -s "http://tarifbd:9080/api/v1/comparison-feed/bo4e?sparte=STROM&kundentyp=Haushalt" | jq .
{
  "meta": { "generated_at": "...", "total_returned": 3 },
  "tarife": [
    {
      "_typ": "TARIFINFO",
      "_version": "v202607.0.0",
      "_id": "STROM-PREMIUM-2026",
      "bezeichnung": "Mako Strom Premium",
      "anbietername": "9900357000004",
      "sparte": "STROM",
      "kundentypen": ["Privat"],
      "registeranzahl": "Eintarif",
      "tariftyp": "SONDERTARIF",
      "tarifmerkmale": ["FESTPREIS"],
      "energiemix": { "anteilErneuerbareEnergien": 100, "co2Emission": 0 },
      "zeitlicheGueltigkeit": { "startdatum": "2026-01-01" },
      "vertragskonditionen": { "laufzeit": { "wert": 12, "einheit": "MONAT" } }
    }
  ]
}

TarifInfo field mapping

BO4E fieldSource in tarifbd
bezeichnungproduct.name
anbieternamelf_mp_id
_idproduct.product_code
sparteproduct.sparterubo4e::Sparte
kundentypenproduct.kundentyp[rubo4e::Kundentyp]
registeranzahlproduct.register_countrubo4e::Registeranzahl
tariftypdata.tariftyprubo4e::Tariftyp
tarifmerkmaleDerived: FESTPREIS if preisgarantie set; PAKET if BUNDLE; ONLINE if dynamic
energiemixproduct.energiemixrubo4e::Energiemix
zeitlicheGueltigkeitproduct.valid_from/valid_torubo4e::Zeitraum
vertragskonditionendata.vertragskonditionenrubo4e::Vertragskonditionen

Both endpoints accept identical query parameters and return the same ETag/caching headers.

Query parameters

ParameterTypeDefaultDescription
spartestringallFilter: STROM | GAS | WAERME
kundentypstringallFilter: Haushalt | Gewerbe | Waermepumpe | Ladesaeule | Einspeiser | HEMS | Gewerbe_RLM
verbrauch_kwhdecimal3500Annual consumption for jahreskosten estimation
oekolabelstringShow only products with this label (e.g. OK_POWER)
include_dynamicbooltrueInclude §41a EPEX-linked dynamic tariffs
only_dynamicboolfalseReturn only §41a dynamic tariffs
limitinteger100Page size (1–500)
cursorstringPagination cursor from meta.next_cursor
lf_mp_idstringcfg.tenantOverride operator ID

Example: Household electricity tariffs

curl -s "http://tarifbd:9080/api/v1/comparison-feed?sparte=STROM&kundentyp=Haushalt&verbrauch_kwh=3500" | jq .
{
  "meta": {
    "generated_at": "2026-07-17T12:00:00Z",
    "lf_mp_id": "9900357000004",
    "verbrauch_kwh": "3500",
    "sparte_filter": "STROM",
    "kundentyp_filter": "Haushalt",
    "total_returned": 3,
    "next_cursor": null
  },
  "tarife": [
    {
      "product_code": "STROM-PREMIUM-2026",
      "name": "Mako Strom Premium",
      "category": "STROM",
      "sparte": "STROM",
      "kundentyp": "Haushalt",
      "register_count": "Eintarif",
      "ist_oekostrom": true,
      "ist_dynamisch": false,
      "valid_from": "2026-01-01",
      "valid_to": null,
      "preise": {
        "grundpreis_ct_per_day": "5.50",
        "arbeitspreis_ct_per_kwh": "28.40",
        "arbeitspreis_ht_ct_per_kwh": null,
        "arbeitspreis_nt_ct_per_kwh": null,
        "leistungspreis_ct_per_kw_month": null
      },
      "jahreskosten_supply_netto_eur": "1014.08",
      "jahreskosten_supply_brutto_eur": "1206.75",
      "mwst_pct": "19",
      "laufzeit_monate": 12,
      "kuendigungsfrist_wochen": 4,
      "mindestlaufzeit_monate": 12,
      "preisgarantie_bis": "2027-06-30",
      "bonus_rabatt_eur": "50.00",
      "energiemix": { "anteil": [...], "co2Emission": 42.0 },
      "oekolabel": ["OK_POWER"],
      "tarifpreisblatt": { "...": "full BO4E payload" },
      "updated_at": "2026-07-17T10:00:00Z"
    }
  ]
}

Caching and efficiency

Responses include ETag and Cache-Control: public, max-age=300 (5-minute cache). Comparison portals should send If-None-Match on every poll — the server returns 304 Not Modified (no body) when no products have changed since the last request.

The ETag changes whenever any product in the result set is updated (PUT /products), so changes propagate to portals within 5 minutes of the next poll.

What jahreskosten_supply_* includes and excludes

jahreskosten_supply_netto_eur = Grundpreis (EUR/a) + Arbeitspreis (EUR/a) only.

Excluded: NNE, Konzessionsabgabe, Stromsteuer, and MwSt — these vary by DSO/PLZ and must be added by the portal integrator:

Jahresgesamtkosten = jahreskosten_supply_brutto_eur
                   + NNE_brutto (from marktd PreisblattNetznutzung by PLZ)
                   + Stromsteuer (2.05 ct/kWh × verbrauch_kwh / 100)

Pagination

The feed is ordered (updated_at DESC, product_code ASC). When meta.next_cursor is non-null, pass it as ?cursor=<value> in the next request. New products always appear on page 1; existing pages remain stable.

# Page 1
curl "http://tarifbd:9080/api/v1/comparison-feed?limit=2"
# → meta.next_cursor: "2026-07-17T10:00:00Z,STROM-BASIC"

# Page 2
curl "http://tarifbd:9080/api/v1/comparison-feed?limit=2&cursor=2026-07-17T10:00:00Z,STROM-BASIC"

B2B Angebot as BO4E

tarifbd emits typed BO4E for its tariff data (Tarifinfo, Tarifpreisblatt), and a B2B quotation is emitted the same way — a quotation is the natural CPQ/ERP interchange payload, which is the point of the format.

GET /api/v1/angebote/{id}/comparison prices the scenarios, returns the BO4E document under bo4e, and persists it to angebote.bo4e.

Structure

BO4E nests one level deeper than the internal breakdown, and the extra level carries real meaning:

Angebot                     one quotation      — angebotsnummer, bindefrist, sparte
└── Angebotsvariante        one scenario       — angebotsstatus, gesamtkosten, gesamtmenge
    └── Angebotsteil        one supply point   — lieferstellenangebotsteil (Marktlokation),
        │                                        lieferzeitraum, gesamtkostenangebotsteil
        └── Angebotsposition  one cost line    — positionsbezeichnung, positionskosten,
                                                 positionsmenge, positionspreis

The internal PositionCostBreakdown conflated the supply point with its cost lines. Splitting them is what makes the payload interchangeable: a receiving ERP reads lieferstellenangebotsteil for the Marktlokation and positionen for what was charged against it.

Field mapping

InternalBO4E
angebotsnummerAngebot.angebotsnummer
gueltig_bisAngebot.bindefrist — BO4E's own term for the binding period
statusAngebotsvariante.angebotsstatus
jahreskosten_netto_eurAngebotsvariante.gesamtkosten (Betrag, EUR)
jahresverbrauch_kwhAngebotsteil.gesamtmengeangebotsteil (Menge, kWh)
malo_idAngebotsteil.lieferstellenangebotsteil[].marktlokationsId
supply / NNE / KA / leviesone Angebotsposition each

ANGELEGT maps to Angebotsstatus::Konzeption, not Unverbindlich: it has not been sent, so it is not yet an offer to the counterparty at all.

Extension points

Angebotsvariante has no discount or label field and Angebotsteil has no product code, so those ride in zusatz_attribute — BO4E's sanctioned extension point, rather than a parallel private blob:

AttributeCarries
mako.angebot.variante.labelscenario name
mako.angebot.variante.rabattProzentdiscount applied to the Arbeitspreis
mako.angebot.variante.istBasismarks the base scenario
mako.angebot.teil.produktCodeinternal product code
mako.angebot.teil.standortBezeichnungfree-text site label

Two deliberate omissions

A zero cost line is omitted, not sent as 0.00: BO4E cannot express "this levy does not apply here", and a receiving ERP cannot tell an exemption from an unpriced position.

An invalid MaLo-ID yields no lieferstellenangebotsteil rather than a Marktlokation carrying a bad key — MaloId validates the BDEW check digit.

Database schema

products

ColumnTypeNotes
idUUIDPrimary key
lf_mp_idTEXTOperator BDEW-Codenummer
product_codeTEXTOperator-assigned product identifier
categoryTEXT14 values: STROM/GAS/WAERME/WASSER/SOLAR/EEG/EINSPEISUNG/WAERMEPUMPE/WALLBOX/HEMS/EMOBILITY/ENERGIEDIENSTLEISTUNG/BUNDLE/SHARING
product_statusTEXTPUBLISHED (default) — visible to billingd and portals; DRAFT — staged, invisible until published
nameTEXTHuman-readable name
sparteTEXTSTROM / GAS / WAERME / NULL
register_countTEXTEintarif / Zweitarif / Mehrtarif
kundentypTEXTHaushalt / Gewerbe / Waermepumpe / Ladesaeule / Einspeiser / HEMS / Gewerbe_RLM
dyn_sourceTEXT"epex-spot-day-ahead" for §41a; NULL for fixed. Only this value is accepted — all others are rejected with 422
valid_fromDATETariff validity start
valid_toDATETariff validity end (soft-delete via DELETE sets this to today)
dataJSONBTarifpreisblatt / Preisblatt BO4E payload (validated on PUT: _typ, _version = v202607.0.0, enum fields, 30-value preistyp whitelist)
energiemixJSONB§42 EnWG Energiemix COM — CO₂ emissions, fuel mix, certification labels
oekolabelTEXT[]Extracted from energiemix for GIN @> filter queries

customer_products

Temporal assignment: one row per (malo_id, lf_mp_id, assigned_from). assigned_to IS NULL = currently active. Tarifwechsel closes the old row and inserts a new one.

epex_prices

One row per 15-min MTU, keyed on mtu_start (UTC). price_date (local delivery date) is indexed for day/range queries; mtu_minutes records the source resolution (15 or 60).



Product lifecycle — DRAFT vs. PUBLISHED

Products support a two-stage publishing workflow:

product_statusVisible toUse case
DRAFTOperators onlyStage a price change before go-live; billingd never sees DRAFT products
PUBLISHED (default)billingd, portald, comparison feed, customer assignmentsLive tariff
# Stage a new price version (operator-only preview)
PUT /api/v1/products/9910000000002/STROM-PREMIUM-2027
Content-Type: application/json

{ "category": "STROM", "product_status": "DRAFT", "name": "...", "data": {...} }

# Publish when ready (makes it live instantly)
PUT /api/v1/products/9910000000002/STROM-PREMIUM-2027
Content-Type: application/json

{ "category": "STROM", "product_status": "PUBLISHED", "name": "...", "data": {...} }

MCP tools

tarifbd ships a built-in MCP server at /mcp (Streamable HTTP 2025-11-25) with 14 read-only tools and 3 prompts.

ToolDescription
list_productsList products for an LF MP-ID (filter by category / sparte)
get_productFull Tarifpreisblatt JSONB including Preisstaffeln and Energiemix
get_product_historyVersion history including Energiemix changes (§42 audit trail)
get_customer_productCurrently active product for a MaLo
get_epex_price15-min MTU EPEX day-ahead prices for a date (§41a compliance check)
list_expiring_contractsMaLo→product assignments ending within N days (churn prevention)
list_angeboteB2B quotations by status (ANGELEGT/VERSANDT/ANGENOMMEN/…)
get_angebotFull Angebot with enriched positions and variant comparisons
The BO4E Angebot document is returned by GET /angebote/{id}/comparison and stored in angebote.bo4e
get_angebot_summaryPlain-text Angebot summary for sales staff review
check_41a_epex_status§41a compliance: are tomorrow's EPEX prices imported? CRITICAL/WARNING/OK
get_product_energiemix§42 EnWG Energiemix disclosure (CO₂, fuel mix, certification)
validate_tariff_configValidate Tarifpreisblatt JSONB before PUT (same logic as REST)
explain_invoice_positionHow a preistyp maps to a billingd invoice output + formula
get_comparison_feedRetrieve the §42d comparison portal feed (proxies the REST endpoint)

Prompts:

  • configure-41a-tariff — Step-by-step: configure a §41a EPEX dynamic tariff product (iMSys requirement, §41a guard)
  • assign-product — Step-by-step: assign a tariff to a MaLo and verify the assignment
  • create-b2b-quotation — Step-by-step: create a formal B2B Angebot for a C&I customer

Configuration

# tarifbd.toml
port   = 9080
tenant = "9910000000002"   # operator LF BDEW-Codenummer

[database]
url = "postgresql://tarifbd:secret@db:5432/tarifbd"

Edit this page ↗