curl --request GET \
--url https://api.engrate.io/schedule-management/v1/mabis/clearing-periods \
--header 'Authorization: <api-key>'import requests
url = "https://api.engrate.io/schedule-management/v1/mabis/clearing-periods"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.engrate.io/schedule-management/v1/mabis/clearing-periods', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.engrate.io/schedule-management/v1/mabis/clearing-periods",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.engrate.io/schedule-management/v1/mabis/clearing-periods"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.engrate.io/schedule-management/v1/mabis/clearing-periods")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.engrate.io/schedule-management/v1/mabis/clearing-periods")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"bilanzierungsmonat": "2026-01-01",
"bilanzkreis_eic": "11XEXAMPLE-BKV-A",
"created_ts": "2026-02-01T00:00:00+00:00",
"last_modified_ts": "2026-02-25T10:00:00+00:00",
"org_uid": "<string>",
"status": "open",
"uid": "c5d6e7f8-a9b0-4c1d-8e2f-3a4b5c6d7e8f",
"final_deadline": "2026-03-31T23:59:59+02:00",
"objection_deadline": "2026-03-13T23:59:59+01:00",
"preliminary_deadline": "2026-02-25T23:59:59+01:00",
"total_imbalance_cost_eur": 1875,
"total_imbalance_mwh": 12.5
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}List Clearing Periods
List Clearing Periods for the organization.
A clearing period covers one calendar month (Bilanzierungsmonat) for a given balance group (Bilanzkreis). The MaBiS process starts at M+5 WT (Erstaufschlag) and closes at M+42 WT (final settlement).
Filters: - status: Filter by status — ‘open’, ‘preliminary’, ‘objection’, ‘final’, ‘closed’ - bilanzkreis_eic: Filter by balance group EIC X code (16-char, starts with ‘11X’)
curl --request GET \
--url https://api.engrate.io/schedule-management/v1/mabis/clearing-periods \
--header 'Authorization: <api-key>'import requests
url = "https://api.engrate.io/schedule-management/v1/mabis/clearing-periods"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.engrate.io/schedule-management/v1/mabis/clearing-periods', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.engrate.io/schedule-management/v1/mabis/clearing-periods",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.engrate.io/schedule-management/v1/mabis/clearing-periods"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.engrate.io/schedule-management/v1/mabis/clearing-periods")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.engrate.io/schedule-management/v1/mabis/clearing-periods")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"bilanzierungsmonat": "2026-01-01",
"bilanzkreis_eic": "11XEXAMPLE-BKV-A",
"created_ts": "2026-02-01T00:00:00+00:00",
"last_modified_ts": "2026-02-25T10:00:00+00:00",
"org_uid": "<string>",
"status": "open",
"uid": "c5d6e7f8-a9b0-4c1d-8e2f-3a4b5c6d7e8f",
"final_deadline": "2026-03-31T23:59:59+02:00",
"objection_deadline": "2026-03-13T23:59:59+01:00",
"preliminary_deadline": "2026-02-25T23:59:59+01:00",
"total_imbalance_cost_eur": 1875,
"total_imbalance_mwh": 12.5
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}Authorizations
Query Parameters
Filter by clearing status: open, preliminary, objection, final, or closed.
Filter by balance group EIC X code (16-character, starts with 11X).
Response
Successful Response
First day of the settlement month in ISO 8601 format.
"2026-01-01"
Balance group (Bilanzkreis) EIC X code.
"11XEXAMPLE-BKV-A"
ISO 8601 datetime when this clearing period was created.
"2026-02-01T00:00:00+00:00"
ISO 8601 datetime of the most recent modification.
"2026-02-25T10:00:00+00:00"
Organization that owns this clearing period.
Clearing status: open, preliminary, objection, final, or closed.
"open"
"preliminary"
"final"
Unique identifier for this clearing period.
"c5d6e7f8-a9b0-4c1d-8e2f-3a4b5c6d7e8f"
Final billing deadline (M+42 WT) as ISO 8601 datetime.
"2026-03-31T23:59:59+02:00"
Objection window closing deadline (M+30 WT) as ISO 8601 datetime.
"2026-03-13T23:59:59+01:00"
Preliminary billing deadline (M+18 WT) as ISO 8601 datetime.
"2026-02-25T23:59:59+01:00"
Total imbalance cost in EUR based on reBAP prices.
1875
Total imbalance energy in MWh across all settlement days.
12.5
Was this page helpful?