Tibber Preise auslesen ohne Kundenkonto?

Hallo zusammen,

gibt es eine Möglichkeit in HA den aktuellen Preis von Tibber zu ziehen, ohne Kunde zu sein, bzw. ohne ein Konto zu haben? Ich überlege zu Tibber zu wechseln, und würde deshalb gerne testweise mal den Preis von Tibber ziehen und mit meinen Nutzungsgewohnheiten durchrechnen lassen. (Bzw. dann mal zu vergleichen ob sich ein Wechsel lohnen würde…)

Hat das schon jemand versucht?
Die Tibber Integration will leider ohne API Token nicht arbeiten :frowning:

Herzlich Willkommen in Forum.

Ich wollte schon wechseln leider probleme mit der Boni.

Zu deiner Frage hab ich mal gegooglet und bin auf den Beitrag gestoßen: Tibber API mit Livedaten - Solaranzeige / PV-Monitor

Getestet und funktioniert.

Ich weiß nicht in wie fern mir der Beitrag helfen soll. Der dort verlinkte Demo Token liefert nur random Werte, also nicht die tatsächlichen Preise die mich interessieren würden.
Ansonsten kommt man nur an einen Token wenn man dort auch ein Kundenkonto hat (soweit ich weiß), welches ich noch nicht habe.
Übersehe ich da noch was?

Hab mir das jetzt mal genauer angesehen. Der token von oben bringt dir leider nix. Also hab ich mich mal registriert damit das mit standort usw. passt. Das geht über die App auch ohne Stromvertrag bei tibber. Problem die Api zeigt dir dann keine werte unter Energie Preise. Also heißt wenn du das testen willst musst du den account haben von jemanden der in deiner gegend wohnt und der dir sein Token gibt. Anders geht leider nicht.

Falls es dir um den EPEX Spot Preis geht, dann kannst du dir mal GitHub - mampfes/ha_epex_spot: Adds EPEX Spot data to Home Assistant. anschauen.
Ich hab zwar keinen tagesaktuellen Float Tarif, aber interesseshalber installiert, um mich zu ärgern wie uns die Konzerne abzocken.

1 „Gefällt mir“

Wie kommst du zu so geringen EPEX-Preisen?
Bei mir sind die Werte wie folgt. :flushed:

Der kommt bei mir so über die Integration an und stimmt auch mit den Preisen von epexspot.com überein.

1 „Gefällt mir“

Ahhh Danke… Du referenziert auf die Attribute. ch nutze die “values”.
Danke Dir für die Erklärung.

Moin, falls es nicht zwingend Tibber sein muss, sondern es um die Preise geht, gibt es auch Awattar die eine API anbieten.

Danke für den Tipp mit der EPEX Integration. Hole mir die Daten jetzt daher mit der Schnittstelle zu Awattar.
Mal sehen wie sich das jetzt alles so entwickelt :slight_smile:

1 „Gefällt mir“

Wobei diese Preise noch ohne Netznutzungsgebühren etc. sind.

Gibt es denn eine Möglichkeit, den Tibber-Preis abzufragen, ohne Kunde bei denen zu sein? Die Börsenpreise von EPEX instessieren mich eher nicht, das sind ja keine Endkundenpreise…

schau dir die Epex-Daten vielleicht nochmal an.
Da sind auch Werte inkl. aller Gebühren und Kosten in der Integration dabei.

der sensor epex_spot_de_net_price steht dir zur Verfügung sowie auch epex_spotpreis_in_ct_kwh der 1. ist der und der 2 ist inkl. Spotpreis = + +

1 „Gefällt mir“

Danke dir! Ich sehe in meiner Integration allerdings nur einen Preis, der kWh hat, der Rest sind MWh. Der Preis mit kWh heißt sensor.epex_spot_data_net_price.
Wie genau heißt die EPEX-Integration, die du nutzt?

EDIT: Ich habe gerade noch mal einen Blick in die Doku der EPEX-HACS-Integration geworfen. Anscheinend fehlt bei mir der Market price-Sensor. Der Net market price ist wohl aber der, der Netzentgelte und Steuern beinhaltet. Der reicht mir ja. Trotzdem komisch, dass der Market price-Sensor fehlt.

1 „Gefällt mir“

schau mal in die Konfiguration der EPEX-Integration. Da steht bei mir folgendes und das wird zum Berechnen wohl genommen.

Ja, die Optionen kenne ich. Ich versuche gerade, damit den Tibber-Preis nachzubauen. Wir sind ein Mehrfamilienhaus mit 60.000 kWh Jahresverbrauch, da sind ein paar Cent Unterschied schon entscheidend. Ich will den Tibber-Preis so exakt nachbauen, um einschätzen zu können, ob sich der Wechsel dahin lohnt.

Kannst du einen Screenshot der Entitäten deines EPEX-Gerätes machen? Ich würde gerne sehen, wie die bei dir aussehen.

Das sind meine aus den Entwicklungswerkzeugen und der EntitätenÜbersicht.





1 „Gefällt mir“

Ich habe damals via einfachem GET meine Daten geholt

https://tibber.com/de/api/lookup/price-overview?postalCode=XXXXX

Gibt ein JSON zurück

{
  "priceArea": "DE",
  "currency": "EUR",
  "annualCompetitorCost": [
    {
      "competitorName": "Vattenfall",
      "competitorType": "default supplier",
      "assumedConsumption": 2500,
      "energyTotalExVat": 869.95,
      "energyTotal": 1035.25,
      "fixedFeesExVat": 102.89,
      "fixedFees": 122.44,
      "yearlyTotal": 1157.69,
      "yearlyTotalExVat": 972.84
    },
    {
      "competitorName": "Fuxx",
      "competitorType": "discount",
      "assumedConsumption": 2500,
      "energyTotalExVat": 628.78,
      "energyTotal": 748.25,
      "fixedFeesExVat": 88.32,
      "fixedFees": 105.1,
      "yearlyTotal": 853.35,
      "yearlyTotalExVat": 717.1
    }
  ],
  "energy": {
    "todayHours": [
      {
        "hour": 0,
        "date": "2024-04-03",
        "priceIncludingVat": 0.2895,
        "priceExcludingVat": 0.2433,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0741,
            "priceIncludingVat": 0.0882
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 1,
        "date": "2024-04-03",
        "priceIncludingVat": 0.2867,
        "priceExcludingVat": 0.241,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0717,
            "priceIncludingVat": 0.0854
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 2,
        "date": "2024-04-03",
        "priceIncludingVat": 0.2846,
        "priceExcludingVat": 0.2393,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0701,
            "priceIncludingVat": 0.0834
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 3,
        "date": "2024-04-03",
        "priceIncludingVat": 0.2876,
        "priceExcludingVat": 0.2417,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0725,
            "priceIncludingVat": 0.0863
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 4,
        "date": "2024-04-03",
        "priceIncludingVat": 0.2874,
        "priceExcludingVat": 0.2415,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0723,
            "priceIncludingVat": 0.0861
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 5,
        "date": "2024-04-03",
        "priceIncludingVat": 0.2949,
        "priceExcludingVat": 0.2479,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0787,
            "priceIncludingVat": 0.0937
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 6,
        "date": "2024-04-03",
        "priceIncludingVat": 0.3142,
        "priceExcludingVat": 0.2641,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0949,
            "priceIncludingVat": 0.1129
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 7,
        "date": "2024-04-03",
        "priceIncludingVat": 0.3416,
        "priceExcludingVat": 0.2871,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.1179,
            "priceIncludingVat": 0.1403
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 8,
        "date": "2024-04-03",
        "priceIncludingVat": 0.3416,
        "priceExcludingVat": 0.2871,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.1179,
            "priceIncludingVat": 0.1403
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 9,
        "date": "2024-04-03",
        "priceIncludingVat": 0.3214,
        "priceExcludingVat": 0.2702,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.101,
            "priceIncludingVat": 0.1202
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 10,
        "date": "2024-04-03",
        "priceIncludingVat": 0.329,
        "priceExcludingVat": 0.2766,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.1074,
            "priceIncludingVat": 0.1277
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 11,
        "date": "2024-04-03",
        "priceIncludingVat": 0.3093,
        "priceExcludingVat": 0.26,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0908,
            "priceIncludingVat": 0.1081
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 12,
        "date": "2024-04-03",
        "priceIncludingVat": 0.2989,
        "priceExcludingVat": 0.2512,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.082,
            "priceIncludingVat": 0.0976
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 13,
        "date": "2024-04-03",
        "priceIncludingVat": 0.2928,
        "priceExcludingVat": 0.2461,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0769,
            "priceIncludingVat": 0.0915
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 14,
        "date": "2024-04-03",
        "priceIncludingVat": 0.2882,
        "priceExcludingVat": 0.2423,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.073,
            "priceIncludingVat": 0.0869
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 15,
        "date": "2024-04-03",
        "priceIncludingVat": 0.2882,
        "priceExcludingVat": 0.2423,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0731,
            "priceIncludingVat": 0.087
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 16,
        "date": "2024-04-03",
        "priceIncludingVat": 0.2925,
        "priceExcludingVat": 0.2459,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0767,
            "priceIncludingVat": 0.0913
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 17,
        "date": "2024-04-03",
        "priceIncludingVat": 0.3113,
        "priceExcludingVat": 0.2617,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0924,
            "priceIncludingVat": 0.11
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 18,
        "date": "2024-04-03",
        "priceIncludingVat": 0.33,
        "priceExcludingVat": 0.2773,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.1081,
            "priceIncludingVat": 0.1287
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 19,
        "date": "2024-04-03",
        "priceIncludingVat": 0.348,
        "priceExcludingVat": 0.2925,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.1233,
            "priceIncludingVat": 0.1467
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 20,
        "date": "2024-04-03",
        "priceIncludingVat": 0.3222,
        "priceExcludingVat": 0.2708,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.1016,
            "priceIncludingVat": 0.1209
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 21,
        "date": "2024-04-03",
        "priceIncludingVat": 0.2976,
        "priceExcludingVat": 0.2502,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.081,
            "priceIncludingVat": 0.0964
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 22,
        "date": "2024-04-03",
        "priceIncludingVat": 0.2911,
        "priceExcludingVat": 0.2447,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0755,
            "priceIncludingVat": 0.0899
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "hour": 23,
        "date": "2024-04-03",
        "priceIncludingVat": 0.2773,
        "priceExcludingVat": 0.2331,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0639,
            "priceIncludingVat": 0.076
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      }
    ],
    "last12Months": [
      {
        "year": 2023,
        "month": 4,
        "priceExcludingVat": 0.2294,
        "priceIncludingVat": 0.2729,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0653,
            "priceIncludingVat": 0.0776
          },
          {
            "type": "power",
            "priceExcludingVat": 0.1007,
            "priceIncludingVat": 0.1199
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.075446,
            "priceExcludingVat": 0.0634
          }
        ]
      },
      {
        "year": 2023,
        "month": 5,
        "priceExcludingVat": 0.2104,
        "priceIncludingVat": 0.2502,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0653,
            "priceIncludingVat": 0.0776
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0817,
            "priceIncludingVat": 0.0972
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.075446,
            "priceExcludingVat": 0.0634
          }
        ]
      },
      {
        "year": 2023,
        "month": 6,
        "priceExcludingVat": 0.2234,
        "priceIncludingVat": 0.2658,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0653,
            "priceIncludingVat": 0.0776
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0948,
            "priceIncludingVat": 0.1128
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.075446,
            "priceExcludingVat": 0.0634
          }
        ]
      },
      {
        "year": 2023,
        "month": 7,
        "priceExcludingVat": 0.2152,
        "priceIncludingVat": 0.256,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0742,
            "priceIncludingVat": 0.0882
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0776,
            "priceIncludingVat": 0.0924
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.075446,
            "priceExcludingVat": 0.0634
          }
        ]
      },
      {
        "year": 2023,
        "month": 8,
        "priceExcludingVat": 0.2319,
        "priceIncludingVat": 0.2759,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0742,
            "priceIncludingVat": 0.0882
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0943,
            "priceIncludingVat": 0.1122
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.075446,
            "priceExcludingVat": 0.0634
          }
        ]
      },
      {
        "year": 2023,
        "month": 9,
        "priceExcludingVat": 0.2383,
        "priceIncludingVat": 0.2835,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0742,
            "priceIncludingVat": 0.0882
          },
          {
            "type": "power",
            "priceExcludingVat": 0.1007,
            "priceIncludingVat": 0.1199
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.075446,
            "priceExcludingVat": 0.0634
          }
        ]
      },
      {
        "year": 2023,
        "month": 10,
        "priceExcludingVat": 0.225,
        "priceIncludingVat": 0.2676,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0742,
            "priceIncludingVat": 0.0882
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0874,
            "priceIncludingVat": 0.104
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.075446,
            "priceExcludingVat": 0.0634
          }
        ]
      },
      {
        "year": 2023,
        "month": 11,
        "priceExcludingVat": 0.2287,
        "priceIncludingVat": 0.2721,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0742,
            "priceIncludingVat": 0.0882
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0911,
            "priceIncludingVat": 0.1084
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.075446,
            "priceExcludingVat": 0.0634
          }
        ]
      },
      {
        "year": 2023,
        "month": 12,
        "priceExcludingVat": 0.2061,
        "priceIncludingVat": 0.2452,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0742,
            "priceIncludingVat": 0.0882
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0685,
            "priceIncludingVat": 0.0815
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.075446,
            "priceExcludingVat": 0.0634
          }
        ]
      },
      {
        "year": 2024,
        "month": 1,
        "priceExcludingVat": 0.2458,
        "priceIncludingVat": 0.2924,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0766,
            "priceIncludingVat": 0.0911
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "year": 2024,
        "month": 2,
        "priceExcludingVat": 0.2305,
        "priceIncludingVat": 0.2743,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0613,
            "priceIncludingVat": 0.073
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      },
      {
        "year": 2024,
        "month": 3,
        "priceExcludingVat": 0.2339,
        "priceIncludingVat": 0.2783,
        "priceComponents": [
          {
            "type": "taxes",
            "priceExcludingVat": 0.0758,
            "priceIncludingVat": 0.0902
          },
          {
            "type": "power",
            "priceExcludingVat": 0.0647,
            "priceIncludingVat": 0.077
          },
          {
            "type": "grid",
            "priceIncludingVat": 0.111146,
            "priceExcludingVat": 0.0934
          }
        ]
      }
    ],
    "today": {
      "priceExcludingVat": 0.2566,
      "priceIncludingVat": 0.3052,
      "priceComponents": [
        {
          "type": "taxes",
          "priceExcludingVat": 0.0758,
          "priceIncludingVat": 0.0902
        },
        {
          "type": "power",
          "priceExcludingVat": 0.0874,
          "priceIncludingVat": 0.104
        },
        {
          "type": "grid",
          "priceIncludingVat": 0.111146,
          "priceExcludingVat": 0.0934
        }
      ]
    },
    "last30Days": {
      "priceExcludingVat": 0.2322,
      "priceIncludingVat": 0.2763,
      "priceComponents": [
        {
          "type": "taxes",
          "priceExcludingVat": 0.0758,
          "priceIncludingVat": 0.0902
        },
        {
          "type": "power",
          "priceExcludingVat": 0.063,
          "priceIncludingVat": 0.075
        },
        {
          "type": "grid",
          "priceIncludingVat": 0.111146,
          "priceExcludingVat": 0.0934
        }
      ]
    },
    "lastMonth": {
      "priceExcludingVat": 0.2339,
      "priceIncludingVat": 0.2783,
      "priceComponents": [
        {
          "type": "taxes",
          "priceExcludingVat": 0.0758,
          "priceIncludingVat": 0.0902
        },
        {
          "type": "power",
          "priceExcludingVat": 0.0647,
          "priceIncludingVat": 0.077
        },
        {
          "type": "grid",
          "priceIncludingVat": 0.111146,
          "priceExcludingVat": 0.0934
        }
      ]
    }
  },
  "monthlyFees": {
    "priceExcludingVat": 8.87,
    "priceIncludingVat": 10.56,
    "priceComponents": [
      {
        "type": "tibber service fee",
        "priceExcludingVat": 5.03,
        "priceIncludingVat": 5.99
      },
      {
        "type": "meter operator",
        "priceExcludingVat": 1.06,
        "priceIncludingVat": 1.26
      },
      {
        "type": "grid",
        "priceExcludingVat": 2.78,
        "priceIncludingVat": 3.31
      }
    ]
  }
}
1 „Gefällt mir“