Get circuit breakers
curl --request GET \
--url https://api.partner.cubee.cz/api/v1/reference/circuit-breakersusing RestSharp;
var options = new RestClientOptions("https://api.partner.cubee.cz/api/v1/reference/circuit-breakers");
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/circuit-breakers', 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/circuit-breakers"
response = requests.get(url)
print(response.text)[
{
"code": "3x16",
"label": "3×16 A",
"monthlyFeeCzk": 155
},
{
"code": "3x25",
"label": "3×25 A",
"monthlyFeeCzk": 236
}
]{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}Reference data
Get circuit breakers
The main-breaker sizes available for a distributor + sazba + period, each with its monthly
reserved-capacity fee. Use that fee as distribution.circuitBreakerMonthlyFee.
GET
/
api
/
v1
/
reference
/
circuit-breakers
Get circuit breakers
curl --request GET \
--url https://api.partner.cubee.cz/api/v1/reference/circuit-breakersusing RestSharp;
var options = new RestClientOptions("https://api.partner.cubee.cz/api/v1/reference/circuit-breakers");
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/circuit-breakers', 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/circuit-breakers"
response = requests.get(url)
print(response.text)[
{
"code": "3x16",
"label": "3×16 A",
"monthlyFeeCzk": 155
},
{
"code": "3x25",
"label": "3×25 A",
"monthlyFeeCzk": 236
}
]{
"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
Stable breaker-size code (e.g. "3x25", "UP_TO_3x10"). Use for selection.
Example:
"3x25"
Human-readable breaker size (e.g. "3×25 A").
Example:
"3×25 A"
Monthly reserved-capacity fee for this breaker size, Kč/month. Use as distribution.circuitBreakerMonthlyFee.
Example:
236
Was this page helpful?