The Watt Price Driver (.Net) provides access to daily electricity market results published at http://www.ote-cr.cz. Data is retrieved from the official SOAP API available at: https://www.ote-cr.cz/services/PublicDataService.
Note: OTE introduced a new service endpoint in April 2026 (https://www.ote-cr.cz/pw-data/services/PublicDataService). As of independent testing on 31 August 2026, both the legacy and new endpoints return identical, working responses. OTE has not announced a firm cutover date, but migrating the Price API URI to the new endpoint when convenient is still recommended for long-term stability.
PLC\Configuration ⇒ Common\Enable .NET Drivers: true
CzechRepublic\OTE\Watt Price 15-Minute Period (Array)
| Parameter | Description |
|---|---|
| Price API Type | The protocol used to query the price source. Preconfigured as SOAP and should not need to be changed. |
| Price API URI | The service endpoint URL the driver queries for price data. Defaults to OTE's public SOAP endpoint. |
| Price API Time Zone | The time zone used when interpreting and aligning price data. Defaults to Europe/Prague. |
| Date Shift Days | Which day's prices to retrieve, relative to today. 0 returns today's prices. -1 returns yesterday's prices, -2 the day before, and so on. Positive values shift forward (e.g. 1 returns tomorrow's prices, once published). |
Variable Identifier:
OTE publishes day-ahead prices at hourly resolution. The Watt Price Driver retrieves this hourly data and derives the four quarter-hour (PriceInQH) values for each hour by dividing the hourly price evenly across its four 15-minute periods. This is expected, correct behavior — the driver does not query OTE for a separate, genuinely 15-minute-resolution dataset, since OTE's day-ahead market does not publish prices at that granularity in the first place.
The Watt Price Driver uses OTE as its data source. For teams that also want to query electricity market data directly from ENTSO-E's Transparency Platform (for example, for markets outside the Czech Republic, or for independent verification of OTE data), the platform offers a public REST API. Access requires a free registered account and an approved security token.
transparency@entsoe.eu with “Restful API access” in the subject line, including your registered email in the body.
For teams comparing OTE's SOAP response against ENTSO-E's REST response (for example, when writing custom integrations), the two formats differ as follows:
| Feature | ENTSO-E REST (A44) | OTE SOAP |
|---|---|---|
| Protocol | REST GET | SOAP POST |
| Price field | <price.amount> inside <Point> | <PriceCZ> |
| Time field | <timeInterval><start> + <position> (1–24) | <Date> + <Hour> |
| Resolution | PT60M (hourly) only | Hourly |
| Error format | Acknowledgement_MarketDocument XML | SOAP Fault |
| Auth | securityToken query parameter (requires registration + approval) | None |
Both sources publish day-ahead prices at hourly resolution only, consistent with how the Watt Price Driver derives quarter-hour values from hourly data (see “About Quarter-Hour Pricing” above).