curl --request GET \
--url https://api.partner.cubee.cz/api/v1/reference/feesusing RestSharp;
var options = new RestClientOptions("https://api.partner.cubee.cz/api/v1/reference/fees");
var client = new RestClient(options);
var request = new RestRequest("");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
const options = {method: 'GET'};
fetch('https://api.partner.cubee.cz/api/v1/reference/fees', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.partner.cubee.cz/api/v1/reference/fees"
response = requests.get(url)
print(response.text){
"distributorFeeHighPerMWh": 712,
"distributorFeeLowPerMWh": 201.25,
"ntAvailable": true,
"renewableEnergyFeePerMWh": 0,
"systemServicesFeePerMWh": 212,
"feeSourceYear": 2025
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}Get fee baseline
Price-list defaults for a distributor + sazba + period: the VT and NT distribution fees, the
regulated POZE and system-services fees, and whether the sazba has a low tariff at all. Prefills
the distribution block of a calculator request.
curl --request GET \
--url https://api.partner.cubee.cz/api/v1/reference/feesusing RestSharp;
var options = new RestClientOptions("https://api.partner.cubee.cz/api/v1/reference/fees");
var client = new RestClient(options);
var request = new RestRequest("");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
const options = {method: 'GET'};
fetch('https://api.partner.cubee.cz/api/v1/reference/fees', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.partner.cubee.cz/api/v1/reference/fees"
response = requests.get(url)
print(response.text){
"distributorFeeHighPerMWh": 712,
"distributorFeeLowPerMWh": 201.25,
"ntAvailable": true,
"renewableEnergyFeePerMWh": 0,
"systemServicesFeePerMWh": 212,
"feeSourceYear": 2025
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}Query Parameters
Distributor code — CEZ, PRE or EGD.
Distribution rate code (e.g. D57d).
Period to price against: "2024", "2025" or "12M" (rolling 12 months).
Response
OK
The ceník (price-list) fee baseline for a distributor + sazba + year — the regulated values the savings
calculator auto-fills into the form. All monetary values are Kč/MWh. ntAvailable mirrors
"this sazba has a low tariff": true when the price list carries a non-zero low-tariff distribution fee, in
which case an HDO command is required (see the calculator's two-tariff guard).
High-tariff (VT) distribution fee, Kč/MWh. Null when the price list has no row for the year.
712
Low-tariff (NT) distribution fee, Kč/MWh. 0 when the sazba is single-tariff.
201.25
True when the sazba is two-tariff (a non-zero NT distribution fee exists in the price list).
true
Renewable-energy (POZE) regulated fee, Kč/MWh.
0
System-services regulated fee, Kč/MWh.
212
The price-list year the fees were resolved from, or null when no matching price list existed.
2025
Was this page helpful?