Overview
Version information
Version : v1.9.2
URI scheme
Host : seffaflik.epias.com.tr
BasePath : /electricity-service
Schemes : HTTPS
Tags
-
consumption-data-controller
-
consumption-export-controller
-
dashboard-data-controller
-
generation-data-controller
-
generation-export-controller
-
main-data-controller
-
markets-ancillary-services-data-controller
-
markets-ancillary-services-export-controller
-
markets-bilateral-contracts-data-controller
-
markets-bilateral-contracts-export-controller
-
markets-dams-data-controller
-
markets-dams-export-controller
-
markets-data-controller
-
markets-dgp-data-controller
-
markets-dgp-export-controller
-
markets-export-controller
-
markets-gddk-data-controller
-
markets-gddk-export-controller
-
markets-general-data-data-controller
-
markets-general-data-export-controller
-
markets-gip-data-controller
-
markets-gip-export-controller
-
markets-gop-data-controller
-
markets-gop-export-controller
-
markets-imbalance-data-controller
-
markets-imbalance-export-controller
-
markets-vep-data-controller
-
markets-vep-export-controller
-
markets-yekg-data-controller
-
markets-yekg-export-controller
-
menu-controller
-
renewables-data-controller
-
renewables-export-controller
-
transmission-data-controller
-
transmission-export-controller
About Document
In this document, the definitions of Transparency Platform Electrical services and how to call these services are explained.
1. About Transparency Electrical Services
The Transparency Platform application is built on REST services. It accepts JSON and XML requests and returns JSON or XML response according to the incoming request.
All of the information you see in the user interface of the application is taken from these open services. It is possible to use the system with the applications you have without using this interface.
2. Adding Security Information To Requests
After deploying the security module on Exist Transparency project, if a user wants to fetch the data displayed on a logged-in web page, that user needs to add the necessary authentication information to the request. If not entered, you will see a redirecting response like this:
Except for externally accessible services, security (authentication) information must be added to the requests in order to fetch data from the service endpoints. To do this, you must first obtain a TGT (ticket granting ticket) from, for testing environments https://giris-prp.epias.com.tr, and for production https://giris.epias.com.tr by sending a request with the relevant user information, as in the example below:
After that, you can enter this TGT in the relevant service endpoints like the image below. Time-to-live(TTL) for TGT is 2 hours, you can use the same TGT for different service endpoints for this TTL period.
3. Creating a Client
You can see this 5 minute tutorial to learn how to read this document and generate a request in Postman.
Service documentation is prepared with Swagger. By using appropriate swagger.json file, you can test and generate client codes suitable for the language you are using(for example, importing it to the Postman or using the Swagger Editor links below)
-
Prod: swagger.json to open in Swagger Editor, click here
The date fields in all incoming and outgoing messages to the service are in ISO-8601 format. The format should be yyyy-MM-dd’T’HH:mm:ssXXX. Data in this platform are displayed in Turkish time zone(which is +0300, for older data consider older daylight savings rules) Example date value: 2023-11-14T17:30:00+03:00 |
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateUtil
{
public static Date fromISO8601Date(String v)
{
if (null == v) return null;
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssXXX");
try
{
return sdf.parse(v);
} catch (ParseException e)
{
throw new RuntimeException(e);
}
}
public static String toISO8601Date(Date v)
{
if (null == v) return null;
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssXXX");
return sdf.format(v);
}
}
When it is desired to receive the returned data in the services with pages, the paging data should be sent to the service as a parameter. You can examine how to make a pagination request through the example below. |
"page": {
"number":1, // Page number
"size":20,// Row count on one page.
"sort":{
"direction":"ASC",// data sorting direction. ASC ya da DESC.
"field":"date" // field name for sorting. it is predetermined by each of the service endpoint
},
"total":0 // not required for request, this field is for returning total data count from server.
}
4. Service Details
From this section, you can access information about service call details according to their categories.
5. Paths
5.1. Consumer Quantity Listing Service
POST /v1/consumption/data/consumer-quantity
5.1.1. Description
The division of consumer numbers on a provincial basis according to consumer type and consumer profile groups is shown on a monthly basis.
5.1.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.1.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.1.4. Consumes
-
application/json
-
application/xml
5.1.5. Produces
-
application/json
-
application/xml
5.1.6. Tags
-
consumption-data-controller
5.2. Profile Group Listing Service
GET /v1/consumption/data/consumer-sector-list
5.2.1. Description
Profile Group Listing Service for the Consumer Information pages
5.2.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.2.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
< ConsumerSectorResponseDto > array |
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.2.4. Produces
-
application/json
-
application/xml
5.2.5. Tags
-
consumption-data-controller
5.3. Consumption Quantity Listing Service
POST /v1/consumption/data/consumption-quantity
5.3.1. Description
The breakdown of Consumption Quantities by consumer type and consumer profile groups is shown monthly based on province.
5.3.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.3.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.3.4. Consumes
-
application/json
-
application/xml
5.3.5. Produces
-
application/json
-
application/xml
5.3.6. Tags
-
consumption-data-controller
5.4. Demand Forecast Service,
POST /v1/consumption/data/demand-forecast
5.4.1. Description
Demand Forecast Service,
5.4.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.4.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.4.4. Consumes
-
application/json
-
application/xml
5.4.5. Produces
-
application/json
-
application/xml
5.4.6. Tags
-
consumption-data-controller
5.5. Distribution Region
GET /v1/consumption/data/distribution-region
5.5.1. Description
Distribution Region
5.5.2. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.5.3. Produces
-
application/json
-
application/xml
5.5.4. Tags
-
consumption-data-controller
5.6. City, District Eligible Customer Number Listing Service
POST /v1/consumption/data/eligible-consumer-count
5.6.1. Description
The number of meters with eligible costumer usage type based on district and profile subscriber group. Past district names may be included in the shared district information. It is kindly requested to pay attention to this issue while making the analysis.
5.6.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.6.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.6.4. Consumes
-
application/json
-
application/xml
5.6.5. Produces
-
application/json
-
application/xml
5.6.6. Tags
-
consumption-data-controller
5.7. Eligible Customer Quantity Listing Service
POST /v1/consumption/data/eligible-consumer-quantity
5.7.1. Description
The number of meters with eligible costumer usage type based on district and profile subscriber group
5.7.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.7.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.7.4. Consumes
-
application/json
-
application/xml
5.7.5. Produces
-
application/json
-
application/xml
5.7.6. Tags
-
consumption-data-controller
5.8. Service For Getting Distribution Companies
GET /v1/consumption/data/get-distribution-companies
5.8.1. Description
Service For Getting Distribution Companies
5.8.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.8.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
< DistributionCompanyResponseDto > array |
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.8.4. Produces
-
application/json
-
application/xml
5.8.5. Tags
-
consumption-data-controller
5.9. Load Forecast Plan Data Listing Service
POST /v1/consumption/data/load-estimation-plan
5.9.1. Description
Total hourly power consumption forecast plans for the next day.
5.9.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.9.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.9.4. Consumes
-
application/json
-
application/xml
5.9.5. Produces
-
application/json
-
application/xml
5.9.6. Tags
-
consumption-data-controller
5.10. Main Tariff Group
GET /v1/consumption/data/main-tariff-group-list
5.10.1. Description
Main Tariff Group Service.
5.10.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.10.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
< MainTariffGroup > array |
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.10.4. Produces
-
application/json
-
application/xml
5.10.5. Tags
-
consumption-data-controller
5.11. Meter Count Data Listing Service
POST /v1/consumption/data/meter-count
5.11.1. Description
It is the number of meters data announced for the period following the current period.
5.11.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.11.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.11.4. Consumes
-
application/json
-
application/xml
5.11.5. Produces
-
application/json
-
application/xml
5.11.6. Tags
-
consumption-data-controller
5.12. Monthly Index Listing Service
POST /v1/consumption/data/monthly-index
5.12.1. Description
The data set regarding the value calculated by using Market Clearing Price (MCP), Negative System Imbalance Price, Renewable Energy Support Mechanism Unit Cost, National Tariff Unit Cost, Withdrawal Quantities on the basis of settlement period for customers registered in the Market Management System. Reference Index is 100.
5.12.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.12.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.12.4. Consumes
-
application/json
-
application/xml
5.12.5. Produces
-
application/json
-
application/xml
5.12.6. Tags
-
consumption-data-controller
5.13. Multiple Factor Data Listing Service
POST /v1/consumption/data/multiple-factor
5.13.1. Description
The data set regarding the value used for profiling of meters that cannot be read on a settlement period basis.
5.13.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.13.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.13.4. Consumes
-
application/json
-
application/xml
5.13.5. Produces
-
application/json
-
application/xml
5.13.6. Tags
-
consumption-data-controller
5.14. Distribution Firms Listing Service
POST /v1/consumption/data/multiple-factor-distribution
5.14.1. Description
Distribution Firms Listing Service
5.14.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.14.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
< Distribution > array |
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.14.4. Produces
-
application/json
-
application/xml
5.14.5. Tags
-
consumption-data-controller
5.15. Meter Reading Type Listing Service
GET /v1/consumption/data/multiple-factor-meter-reading-type
5.15.1. Description
Meter Reading Type Listing Service
5.15.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.15.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
< MeterReadingType > array |
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.15.4. Produces
-
application/json
-
application/xml
5.15.5. Tags
-
consumption-data-controller
5.16. Profile Group Listing Service
POST /v1/consumption/data/multiple-factor-profile-group
5.16.1. Description
If the distributionId field is provided, it will list the valid Profile Group according to the distribution company/organization ID information for the relevant period, if left empty, it will list all Profile Group.
5.16.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.16.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
< SubscriberProfileGroup > array |
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.16.4. Produces
-
application/json
-
application/xml
5.16.5. Tags
-
consumption-data-controller
5.17. Percentage of Consumption Information Data Listing Service
POST /v1/consumption/data/percentage-consumption-info
5.17.1. Description
The data set regarding the percentage of actual consumption by city and customer profile group.
5.17.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.17.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.17.4. Consumes
-
application/json
-
application/xml
5.17.5. Produces
-
application/json
-
application/xml
5.17.6. Tags
-
consumption-data-controller
5.18. Planned Failure Information Listing Service
POST /v1/consumption/data/planned-power-outage-info
5.18.1. Description
This is the screen where information about the planned outage is presented.
5.18.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.18.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.18.4. Consumes
-
application/json
-
application/xml
5.18.5. Produces
-
application/json
-
application/xml
5.18.6. Tags
-
consumption-data-controller
5.19. Customer Profile Group Service
POST /v1/consumption/data/profile-subscription-group-list
5.19.1. Description
Customer Profile Group Service
5.19.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.19.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
< string > array |
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.19.4. Consumes
-
application/json
-
application/xml
5.19.5. Produces
-
application/json
-
application/xml
5.19.6. Tags
-
consumption-data-controller
5.20. Real Time Consumption Data Listing Service
POST /v1/consumption/data/realtime-consumption
5.20.1. Description
It is the data that shows the instantaneous consumption value on an hourly basis. Real-Time Consumption data is published 2 hours behind.
5.20.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.20.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.20.4. Consumes
-
application/json
-
application/xml
5.20.5. Produces
-
application/json
-
application/xml
5.20.6. Tags
-
consumption-data-controller
5.21. Eligible Customer Count Listing Service
POST /v1/consumption/data/st-adedi
5.21.1. Description
The number of meters with eligible costumer usage type
5.21.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.21.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.21.4. Consumes
-
application/json
-
application/xml
5.21.5. Produces
-
application/json
-
application/xml
5.21.6. Tags
-
consumption-data-controller
5.22. Eligible Customer Withdrawal Quantity Data Listing Service
POST /v1/consumption/data/st-uecm
5.22.1. Description
The data set regarding total hourly energy withdrawal quantity of eligible customers
5.22.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.22.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.22.4. Consumes
-
application/json
-
application/xml
5.22.5. Produces
-
application/json
-
application/xml
5.22.6. Tags
-
consumption-data-controller
5.23. Withdrawal Quantity Data Listing Service
POST /v1/consumption/data/uecm
5.23.1. Description
The data set regarding total hourly energy withdrawal quantity of withdrawal units.
5.23.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.23.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.23.4. Consumes
-
application/json
-
application/xml
5.23.5. Produces
-
application/json
-
application/xml
5.23.6. Tags
-
consumption-data-controller
5.24. Unplanned Failure Information Listing Service
POST /v1/consumption/data/unplanned-power-outage-info
5.24.1. Description
This is the screen where unplanned outage are presented.
5.24.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.24.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.24.4. Consumes
-
application/json
-
application/xml
5.24.5. Produces
-
application/json
-
application/xml
5.24.6. Tags
-
consumption-data-controller
5.25. Withdrawal Quantity Under Supply Liability Data Listing Service
POST /v1/consumption/data/withdrawal-quantity-under-supply-liability
5.25.1. Description
The data set regarding total energy withdrawal quantity under supply liability of withdrawal units. If YEKDEM revenue is more than the total price of YEK in an invoicing period, the calculation is made in accordance with the fourth paragraph of Article 13 of the Regulation on Certification and Support of Renewable Energy Resources, and the unit price applied to suppliers for all sales except the sales of the Authorized Supply Companies within the scope of K1 is 0 TL/MWh.
5.25.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.25.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.25.4. Consumes
-
application/json
-
application/xml
5.25.5. Produces
-
application/json
-
application/xml
5.25.6. Tags
-
consumption-data-controller
5.26. Consumer Quantity Export Service
POST /v1/consumption/export/consumer-quantity
5.26.1. Description
The division of consumer numbers on a provincial basis according to consumer type and consumer profile groups is shown on a monthly basis. Exports Consumer Quantity datas as XLSX, CSV or PDF formats.
5.26.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.26.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.26.4. Consumes
-
application/json
-
application/xml
5.26.5. Produces
-
application/json
-
application/xml
5.26.6. Tags
-
consumption-export-controller
5.27. Consumption Quantity Export Service
POST /v1/consumption/export/consumption-quantity
5.27.1. Description
The breakdown of Consumption Quantities by consumer type and consumer profile groups is shown monthly based on province. Exports Consumption Quantity datas as XLSX, CSV or PDF formats.
5.27.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.27.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.27.4. Consumes
-
application/json
-
application/xml
5.27.5. Produces
-
application/json
-
application/xml
5.27.6. Tags
-
consumption-export-controller
5.28. Demand Forecest Data Export Service
POST /v1/consumption/export/demand-forecast-export
5.28.1. Description
Demand Forecast Service Which Can Be Exported
5.28.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.28.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.28.4. Consumes
-
application/json
-
application/xml
5.28.5. Produces
-
application/json
-
application/xml
5.28.6. Tags
-
consumption-export-controller
5.29. City, District Eligible Customer Number Export Service
POST /v1/consumption/export/eligible-consumer-count
5.29.1. Description
The number of meters with eligible costumer usage type based on district and profile subscriber group. Past district names may be included in the shared district information. It is kindly requested to pay attention to this issue while making the analysis. Exports City, District Eligible Customer Number datas as XLSX, CSV or PDF formats.
5.29.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.29.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.29.4. Consumes
-
application/json
-
application/xml
5.29.5. Produces
-
application/json
-
application/xml
5.29.6. Tags
-
consumption-export-controller
5.30. Eligible Customer Quantity Export Service
POST /v1/consumption/export/eligible-consumer-quantity
5.30.1. Description
The number of meters with eligible costumer usage type based on district and profile subscriber group. Exports Eligible Customer Quantity datas as XLSX, CSV or PDF formats.
5.30.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.30.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.30.4. Consumes
-
application/json
-
application/xml
5.30.5. Produces
-
application/json
-
application/xml
5.30.6. Tags
-
consumption-export-controller
5.31. Load Forecast Plan Export Service
POST /v1/consumption/export/load-estimation-plan
5.31.1. Description
Total hourly power consumption forecast plans for the next day. Exports Load Forecast Plan datas as XLSX, CSV or PDF formats.
5.31.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.31.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.31.4. Consumes
-
application/json
-
application/xml
5.31.5. Produces
-
application/json
-
application/xml
5.31.6. Tags
-
consumption-export-controller
5.32. Meter Count Export Service
POST /v1/consumption/export/meter-count-export
5.32.1. Description
It is the number of meters data announced for the period following the current period. Exports Meter Count datas as XLSX, CSV or PDF formats.
5.32.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.32.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.32.4. Consumes
-
application/json
-
application/xml
5.32.5. Produces
-
application/json
-
application/xml
5.32.6. Tags
-
consumption-export-controller
5.33. Monthly Index Export Service
POST /v1/consumption/export/monthly-index
5.33.1. Description
The data set regarding the value calculated by using Market Clearing Price (MCP), Negative System Imbalance Price, Renewable Energy Support Mechanism Unit Cost, National Tariff Unit Cost, Withdrawal Quantities on the basis of settlement period for customers registered in the Market Management System. Reference Index is 100. Exports Monthly Index datas as XLSX, CSV or PDF formats.
5.33.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.33.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.33.4. Consumes
-
application/json
-
application/xml
5.33.5. Produces
-
application/json
-
application/xml
5.33.6. Tags
-
consumption-export-controller
5.34. Multiple Factor Export Service
POST /v1/consumption/export/multiple-factor
5.34.1. Description
The data set regarding the value used for profiling of meters that cannot be read on a settlement period basis.Exports Multiple Factor datas as XLSX, CSV or PDF formats.
5.34.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.34.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.34.4. Consumes
-
application/json
-
application/xml
5.34.5. Produces
-
application/json
-
application/xml
5.34.6. Tags
-
consumption-export-controller
5.35. Percentage of Consumption Information Export Service
POST /v1/consumption/export/percentage-consumption-info
5.35.1. Description
The data set regarding the percentage of actual consumption by city and customer profile group. Exports Percentage of Consumption Information datas as XLSX, CSV or PDF formats.
5.35.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.35.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.35.4. Consumes
-
application/json
-
application/xml
5.35.5. Produces
-
application/json
-
application/xml
5.35.6. Tags
-
consumption-export-controller
5.36. Planned Failure Information Export Service
POST /v1/consumption/export/planned-power-outage-info
5.36.1. Description
This is the screen where information about the planned outage is presented. Exports Planned Failure Information datas as XLSX, CSV or PDF formats.
5.36.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.36.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.36.4. Consumes
-
application/json
-
application/xml
5.36.5. Produces
-
application/json
-
application/xml
5.36.6. Tags
-
consumption-export-controller
5.37. Real Time Consumption Export Service
POST /v1/consumption/export/realtime-consumption
5.37.1. Description
It is the data that shows the instantaneous consumption value on an hourly basis. Real-Time Consumption data is published 2 hours behind.
5.37.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.37.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.37.4. Consumes
-
application/json
-
application/xml
5.37.5. Produces
-
application/json
-
application/xml
5.37.6. Tags
-
consumption-export-controller
5.38. Eligible Customer Count Export Service
POST /v1/consumption/export/st-adedi
5.38.1. Description
The number of meters with eligible costumer usage type. Exports Eligible Customer Count datas as XLSX, CSV or PDF formats.
5.38.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.38.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.38.4. Consumes
-
application/json
-
application/xml
5.38.5. Produces
-
application/json
-
application/xml
5.38.6. Tags
-
consumption-export-controller
5.39. Eligible Customer Withdrawal Quantity Export Service
POST /v1/consumption/export/st-uecm
5.39.1. Description
The data set regarding total hourly energy withdrawal quantity of eligible customers. Exports Eligible Customer Withdrawal Quantity datas as XLSX, CSV or PDF formats.
5.39.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.39.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.39.4. Consumes
-
application/json
-
application/xml
5.39.5. Produces
-
application/json
-
application/xml
5.39.6. Tags
-
consumption-export-controller
5.40. Withdrawal Quantity Export Service
POST /v1/consumption/export/uecm-export
5.40.1. Description
The data set regarding total hourly energy withdrawal quantity of withdrawal units. Exports Withdrawal Quantity datas as XLSX, CSV or PDF formats.
5.40.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.40.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.40.4. Consumes
-
application/json
-
application/xml
5.40.5. Produces
-
application/json
-
application/xml
5.40.6. Tags
-
consumption-export-controller
5.41. Unplanned Failure Information Export Service
POST /v1/consumption/export/unplanned-power-outage-info
5.41.1. Description
This is the screen where unplanned outage are presented. Exports Unplanned Failure Information datas as XLSX, CSV or PDF formats.
5.41.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.41.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.41.4. Consumes
-
application/json
-
application/xml
5.41.5. Produces
-
application/json
-
application/xml
5.41.6. Tags
-
consumption-export-controller
5.42. Withdrawal Quantity Under Supply Liability Export Service
POST /v1/consumption/export/withdrawal-quantity-under-supply-liability
5.42.1. Description
The data set regarding total energy withdrawal quantity under supply liability of withdrawal units. If YEKDEM revenue is more than the total price of YEK in an invoicing period, the calculation is made in accordance with the fourth paragraph of Article 13 of the Regulation on Certification and Support of Renewable Energy Resources, and the unit price applied to suppliers for all sales except the sales of the Authorized Supply Companies within the scope of K1 is 0 TL/MWh. Exports Withdrawal Quantity Under Supply Liability datas as XLSX, CSV or PDF formats.
5.42.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.42.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.42.4. Consumes
-
application/json
-
application/xml
5.42.5. Produces
-
application/json
-
application/xml
5.42.6. Tags
-
consumption-export-controller
5.43. Active Fullness Data Listing Service
POST /v1/dams/data/active-fullness
5.43.1. Description
The percentage of volume between the maximum and minimum operating levels of a dam. Formula: Active Occupancy= [( Volume Corresponding to the Level on the Relevant Date - Minimum Volume ) / ( Maximum Volume - Minimum Volume )] *100. Data is finalized as of 17:00. Dam data is provided daily. There is no retrospective data.
5.43.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.43.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.43.4. Consumes
-
application/json
-
application/xml
5.43.5. Produces
-
application/json
-
application/xml
5.43.6. Tags
-
markets-dams-data-controller
5.44. Active Volume Data Listing Service
POST /v1/dams/data/active-volume
5.44.1. Description
The volume between the minimum volume and minimum operating levels of a dam at the relevant date. Data is finalized at 17:00. Dam data is provided daily. There is no retrospective data.
5.44.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.44.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.44.4. Consumes
-
application/json
-
application/xml
5.44.5. Produces
-
application/json
-
application/xml
5.44.6. Tags
-
markets-dams-data-controller
5.45. Service that returns the basin list.
GET /v1/dams/data/basin-list
5.45.1. Description
Service that returns the basin list.
5.45.2. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
< string > array |
5.45.3. Produces
-
application/json
-
application/xml
5.45.4. Tags
-
markets-dams-data-controller
5.46. Daily Kot Data Listing Service
POST /v1/dams/data/daily-kot
5.46.1. Description
Indicates the water height of the dam on the relevant day. The data is finalized as of 5 pm. Dam data is provided daily. There is no retrospective data.
5.46.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.46.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.46.4. Consumes
-
application/json
-
application/xml
5.46.5. Produces
-
application/json
-
application/xml
5.46.6. Tags
-
markets-dams-data-controller
5.47. Daily Volume Data Listing Service
POST /v1/dams/data/daily-volume
5.47.1. Description
The volume corresponding to the level of a dam at the relevant date. Data is finalized at 17:00. Dam data is provided daily. There is no retrospective data.
5.47.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.47.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.47.4. Consumes
-
application/json
-
application/xml
5.47.5. Produces
-
application/json
-
application/xml
5.47.6. Tags
-
markets-dams-data-controller
5.48. Kot Data Listing Service
POST /v1/dams/data/dam-kot
5.48.1. Description
Indicates the minimum and maximum water level of the dam.
5.48.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.48.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.48.4. Consumes
-
application/json
-
application/xml
5.48.5. Produces
-
application/json
-
application/xml
5.48.6. Tags
-
markets-dams-data-controller
5.49. The service that returns the list of Dams with the name of the basin.
POST /v1/dams/data/dam-list
5.49.1. Description
The service that returns the list of Dams with the name of the basin.
5.49.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.49.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.49.4. Consumes
-
application/json
-
application/xml
5.49.5. Produces
-
application/json
-
application/xml
5.49.6. Tags
-
markets-dams-data-controller
5.50. Volume Data Listing Service
POST /v1/dams/data/dam-volume
5.50.1. Description
It shows the maximum and minimum volume level of the relevant dam.
5.50.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.50.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.50.4. Consumes
-
application/json
-
application/xml
5.50.5. Produces
-
application/json
-
application/xml
5.50.6. Tags
-
markets-dams-data-controller
5.51. Flow Rate and Installed Power Data Listing Service
POST /v1/dams/data/flow-rate-and-installed-power
5.51.1. Description
It shows the amount of water passing through the unit in the relevant dam and the installed power of the dam.
5.51.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.51.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.51.4. Consumes
-
application/json
-
application/xml
5.51.5. Produces
-
application/json
-
application/xml
5.51.6. Tags
-
markets-dams-data-controller
5.52. Water Energy Provision Data Listing Service
POST /v1/dams/data/water-energy-provision
5.52.1. Description
The energy equivalent of Mwh in the dam. Data is finalized at 17:00. Dam data is provided daily. There is no retrospective data.
5.52.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.52.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.52.4. Consumes
-
application/json
-
application/xml
5.52.5. Produces
-
application/json
-
application/xml
5.52.6. Tags
-
markets-dams-data-controller
5.53. Active Fullness Export Service
POST /v1/dams/export/active-fullness
5.53.1. Description
The percentage of volume between the maximum and minimum operating levels of a dam. Formula: Active Occupancy= [( Volume Corresponding to the Level on the Relevant Date - Minimum Volume ) / ( Maximum Volume - Minimum Volume )] *100. Data is finalized as of 17:00. Dam data is provided daily. There is no retrospective data. Exports Active Fullness datas as XLSX, CSV or PDF formats.
5.53.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.53.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.53.4. Consumes
-
application/json
-
application/xml
5.53.5. Produces
-
application/json
-
application/xml
5.53.6. Tags
-
markets-dams-export-controller
5.54. Active Volume Export Service
POST /v1/dams/export/active-volume
5.54.1. Description
The volume between the minimum volume and minimum operating levels of a dam at the relevant date. Data is finalized at 17:00. Dam data is provided daily. There is no retrospective data. Exports Active Volume datas as XLSX, CSV or PDF formats.
5.54.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.54.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.54.4. Consumes
-
application/json
-
application/xml
5.54.5. Produces
-
application/json
-
application/xml
5.54.6. Tags
-
markets-dams-export-controller
5.55. Daily Kot Export Service
POST /v1/dams/export/daily-kot
5.55.1. Description
Indicates the water height of the dam on the relevant day. The data is finalized as of 5 pm. Dam data is provided daily. There is no retrospective data. Exports Daily Kot datas as XLSX, CSV or PDF formats.
5.55.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.55.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.55.4. Consumes
-
application/json
-
application/xml
5.55.5. Produces
-
application/json
-
application/xml
5.55.6. Tags
-
markets-dams-export-controller
5.56. Daily Volume Export Service
POST /v1/dams/export/daily-volume
5.56.1. Description
The volume corresponding to the level of a dam at the relevant date. Data is finalized at 17:00. Dam data is provided daily. There is no retrospective data. Exports Daily Volume datas as XLSX, CSV or PDF formats.
5.56.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.56.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.56.4. Consumes
-
application/json
-
application/xml
5.56.5. Produces
-
application/json
-
application/xml
5.56.6. Tags
-
markets-dams-export-controller
5.57. Kot Export Service
POST /v1/dams/export/dam-kot
5.57.1. Description
Indicates the minimum and maximum water level of the dam. Exports Kot datas as XLSX, CSV or PDF formats.
5.57.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.57.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.57.4. Consumes
-
application/json
-
application/xml
5.57.5. Produces
-
application/json
-
application/xml
5.57.6. Tags
-
markets-dams-export-controller
5.58. Volume Export Service
POST /v1/dams/export/dam-volume
5.58.1. Description
It shows the maximum and minimum volume level of the relevant dam. Exports Volume datas as XLSX, CSV or PDF formats.
5.58.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.58.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.58.4. Consumes
-
application/json
-
application/xml
5.58.5. Produces
-
application/json
-
application/xml
5.58.6. Tags
-
markets-dams-export-controller
5.59. Flow Rate and Installed Power Export Service
POST /v1/dams/export/flow-rate-and-installed-power
5.59.1. Description
It shows the amount of water passing through the unit in the relevant dam and the installed power of the dam. Exports Flow Rate and Installed Power datas as XLSX, CSV or PDF formats.
5.59.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.59.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.59.4. Consumes
-
application/json
-
application/xml
5.59.5. Produces
-
application/json
-
application/xml
5.59.6. Tags
-
markets-dams-export-controller
5.60. Water Energy Provision Export Service
POST /v1/dams/export/water-energy-provision
5.60.1. Description
The energy equivalent of Mwh in the dam. Data is finalized at 17:00. Dam data is provided daily. There is no retrospective data. Exports Water Energy Provision datas as XLSX, CSV or PDF formats.
5.60.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.60.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.60.4. Consumes
-
application/json
-
application/xml
5.60.5. Produces
-
application/json
-
application/xml
5.60.6. Tags
-
markets-dams-export-controller
5.61. Transparency dashboard balancing power market data service
GET /v1/dashboard/balancing-power-market
5.61.1. Description
Transparency dashboard balancing power market data service
5.61.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.61.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.61.4. Produces
-
application/json
-
application/xml
5.61.5. Tags
-
dashboard-data-controller
5.62. Transparency dashboard day ahead market data service
GET /v1/dashboard/day-ahead-market
5.62.1. Description
Transparency dashboard day ahead market data service
5.62.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.62.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.62.4. Produces
-
application/json
-
application/xml
5.62.5. Tags
-
dashboard-data-controller
5.63. Transparency dashboard intra day data service
GET /v1/dashboard/intra-day-market
5.63.1. Description
Transparency dashboard intra day data service
5.63.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.63.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.63.4. Produces
-
application/json
-
application/xml
5.63.5. Tags
-
dashboard-data-controller
5.64. Transparency dashboard market message system service
GET /v1/dashboard/market-message-system
5.64.1. Description
Transparency dashboard market message system service
5.64.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.64.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.64.4. Produces
-
application/json
-
application/xml
5.64.5. Tags
-
dashboard-data-controller
5.65. Transparency dashboard realtime consumption data service
GET /v1/dashboard/realtime-consumption
5.65.1. Description
Transparency dashboard realtime consumption data service
5.65.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.65.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.65.4. Produces
-
application/json
-
application/xml
5.65.5. Tags
-
dashboard-data-controller
5.66. Transparency dashboard realtime generation data service
GET /v1/dashboard/realtime-generation
5.66.1. Description
Transparency dashboard realtime generation data service
5.66.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.66.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.66.4. Produces
-
application/json
-
application/xml
5.66.5. Tags
-
dashboard-data-controller
5.67. Transparency dashboard spot gaz market data service
GET /v1/dashboard/spot-gas-market
5.67.1. Description
Transparency dashboard spot gaz market data service
5.67.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.67.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.67.4. Produces
-
application/json
-
application/xml
5.67.5. Tags
-
dashboard-data-controller
5.68. Transparency Dashboard Weighted Average Price Data Service
GET /v1/dashboard/weighted-average-price
5.68.1. Description
Transparency Dashboard Weighted Average Price Data Service
5.68.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.68.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.68.4. Produces
-
application/json
-
application/xml
5.68.5. Tags
-
dashboard-data-controller
5.69. Available Installed Capacity (AIC) Data Listing Service
POST /v1/generation/data/aic
5.69.1. Description
Available Installed Capacity : The active power capacity that a generation unit can provide to the system.
5.69.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.69.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.69.4. Consumes
-
application/json
-
application/xml
5.69.5. Produces
-
application/json
-
application/xml
5.69.6. Tags
-
generation-data-controller
5.70. Final Daily Production Program (FDPP) Data Listing Service
POST /v1/generation/data/dpp
5.70.1. Description
Final day-ahead generation/consumption schedule (FDGS): The generation or consumption values which a settlement feed in-feed out unit anticipates to realize in the following day and notifies the System Operator at the opening of the balancing power market, depending on the obligations of the balancing responsible unit that it is a member of and the result of day-ahead balancing.
5.70.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.70.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.70.4. Consumes
-
application/json
-
application/xml
5.70.5. Produces
-
application/json
-
application/xml
5.70.6. Tags
-
generation-data-controller
5.71. ${VALUE_KGUP_ILK_VERSION_DATA}
POST /v1/generation/data/dpp-first-version
5.71.1. Description
${NOTES_KGUP_ILK_VERSION_DATA}
5.71.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.71.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.71.4. Consumes
-
application/json
-
application/xml
5.71.5. Produces
-
application/json
-
application/xml
5.71.6. Tags
-
generation-data-controller
5.72. Injection Quantity List Service
POST /v1/generation/data/injection-quantity
5.72.1. Description
Settlement Based Power Generation: The total value of the resource based electricity amount given to the system hourly by the settlement units within a settlement period.
5.72.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.72.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.72.4. Consumes
-
application/json
-
application/xml
5.72.5. Produces
-
application/json
-
application/xml
5.72.6. Tags
-
generation-data-controller
5.73. Injection Quantity Powerplant Listing Service
GET /v1/generation/data/injection-quantity-powerplant-list
5.73.1. Description
Injection Quantity Powerplant Listing Service
5.73.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.73.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.73.4. Produces
-
application/json
-
application/xml
5.73.5. Tags
-
generation-data-controller
5.74. Licenced Power Plant Investments Data Listing Service
POST /v1/generation/data/licensed-powerplant-investment-list
5.74.1. Description
It is the monthly list of electricity generation facilities that are pre-approved and put into operation by the General Directorate of Energy Affairs. It is the monthly list of electricity generation facilities.
5.74.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.74.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.74.4. Produces
-
application/json
-
application/xml
5.74.5. Tags
-
generation-data-controller
5.75. Organization Listing Service
POST /v1/generation/data/organization-list
5.75.1. Description
Organization Listing Service
5.75.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.75.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.75.4. Consumes
-
application/json
-
application/xml
5.75.5. Produces
-
application/json
-
application/xml
5.75.6. Tags
-
generation-data-controller
5.76. Power plant information listing service
GET /v1/generation/data/powerplant-list
5.76.1. Description
Power plant Information Listing Service for TEIAS Systems. The power plant information returned(i.e: power plant id) as a result of this service consists of data received from TEIAS systems.
5.76.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.76.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.76.4. Produces
-
application/json
-
application/xml
5.76.5. Tags
-
generation-data-controller
5.77. Real-Time Generation Data Listing Service
POST /v1/generation/data/realtime-generation
5.77.1. Description
Real time generation: The display of hourly generation values of electricity generation plants on a resource basis. For power plant specific generation data, latest data shown is a day before current date. Requests for the current date’s power plant specific generation data will return a bad request(HTTP 400)
5.77.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.77.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.77.4. Consumes
-
application/json
-
application/xml
5.77.5. Produces
-
application/json
-
application/xml
5.77.6. Tags
-
generation-data-controller
5.78. Region Listing Service
GET /v1/generation/data/region-list
5.78.1. Description
Region Listing Service
5.78.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.78.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.78.4. Produces
-
application/json
-
application/xml
5.78.5. Tags
-
generation-data-controller
5.79. Settlement Based Final Generation Plan (SBFGP) Data Listing Service
POST /v1/generation/data/sbfgp
5.79.1. Description
Final Settlement Period Generation Schedule: The generation schedules of power plants that have become unbalanced after the gate closure intraday market.
5.79.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.79.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.79.4. Consumes
-
application/json
-
application/xml
5.79.5. Produces
-
application/json
-
application/xml
5.79.6. Tags
-
generation-data-controller
5.80. Injection/Withdrawal Unit Listing Service
POST /v1/generation/data/uevcb-list
5.80.1. Description
Returns Injection/Withdrawal Unit list by the given organizastion’s id.
5.80.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.80.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.80.4. Consumes
-
application/json
-
application/xml
5.80.5. Produces
-
application/json
-
application/xml
5.80.6. Tags
-
generation-data-controller
5.81. Available Installed Capacity (AIC) Export Service
POST /v1/generation/export/aic
5.81.1. Description
Available Installed Capacity: The active power capacity that a generation unit can provide to the system. ExportsAvailable Installed Capacity (AIC) datas as XLSX, CSV or PDF formats.
5.81.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.81.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.81.4. Consumes
-
application/json
-
application/xml
5.81.5. Produces
-
application/json
-
application/xml
5.81.6. Tags
-
generation-export-controller
5.82. Final Daily Production Program (FDPP) Export Service
POST /v1/generation/export/dpp
5.82.1. Description
Final day-ahead generation/consumption schedule (FDGS): The generation or consumption values which a settlement feed in-feed out unit anticipates to realize in the following day and notifies the System Operator at the opening of the balancing power market, depending on the obligations of the balancing responsible unit that it is a member of and the result of day-ahead balancing. Exports Final Daily Production Program (FDPP) datas as XLSX, CSV or PDF formats.
5.82.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.82.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.82.4. Consumes
-
application/json
-
application/xml
5.82.5. Produces
-
application/json
-
application/xml
5.82.6. Tags
-
generation-export-controller
5.83. Final Daily Production Program (FDPP) Export Service
POST /v1/generation/export/dpp-first-version
5.83.1. Description
Final day-ahead generation/consumption schedule (FDGS): The generation or consumption values which a settlement feed in-feed out unit anticipates to realize in the following day and notifies the System Operator at the opening of the balancing power market, depending on the obligations of the balancing responsible unit that it is a member of and the result of day-ahead balancing. Exports Final Daily Production Program (FDPP) datas as XLSX, CSV or PDF formats.
5.83.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.83.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.83.4. Consumes
-
application/json
-
application/xml
5.83.5. Produces
-
application/json
-
application/xml
5.83.6. Tags
-
generation-export-controller
5.84. Injection Quantity Export Service
POST /v1/generation/export/injection-quantity
5.84.1. Description
Injection Quantity Export Service
5.84.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.84.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.84.4. Consumes
-
application/json
-
application/xml
5.84.5. Produces
-
application/json
-
application/xml
5.84.6. Tags
-
generation-export-controller
5.85. Licenced Power Plant Investments Export Service
POST /v1/generation/export/licensed-powerplant-investment-list
5.85.1. Description
It is the monthly list of electricity generation facilities that are pre-approved and put into operation by the General Directorate of Energy Affairs. It is the monthly list of electricity generation facilities. Exports Licenced Power Plant Investments datas as XLSX, CSV or PDF formats.
5.85.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.85.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.85.4. Consumes
-
application/json
-
application/xml
5.85.5. Produces
-
application/json
-
application/xml
5.85.6. Tags
-
generation-export-controller
5.86. Real-Time Generation Export Service
POST /v1/generation/export/realtime-generation
5.86.1. Description
Real-Time Generation Export Service
5.86.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.86.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.86.4. Consumes
-
application/json
-
application/xml
5.86.5. Produces
-
application/json
-
application/xml
5.86.6. Tags
-
generation-export-controller
5.87. Settlement Based Final Generation Plan (SBFGP) Export Service
POST /v1/generation/export/sbfgp
5.87.1. Description
Final Settlement Period Generation Schedule: The generation schedules of power plants that have become unbalanced after the gate closure intraday market. Exports Settlement Based Final Generation Plan (SBFGP) datas as XLSX, CSV or PDF formats.
5.87.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.87.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.87.4. Consumes
-
application/json
-
application/xml
5.87.5. Produces
-
application/json
-
application/xml
5.87.6. Tags
-
generation-export-controller
5.88. Main Date Services
GET /v1/main/date-init
5.88.1. Description
Main Date Services
5.88.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.88.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.88.4. Tags
-
main-data-controller
5.89. District List Service
POST /v1/main/district-list
5.89.1. Description
District List Service
5.89.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.89.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
< DistrictResponseDto > array |
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.89.4. Consumes
-
application/json
-
application/xml
5.89.5. Produces
-
application/json
-
application/xml
5.89.6. Tags
-
main-data-controller
5.90. Province Listing Service
GET /v1/main/province-list
5.90.1. Description
Listing of Turkiye’s provinces saved in EXIST systems. Istanbul is declared as two items: Istanbul-Asia and Istanbul-Europe.
5.90.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.90.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
< ProvinceResponseDto > array |
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.90.4. Produces
-
application/json
-
application/xml
5.90.5. Tags
-
main-data-controller
5.91. Primary Frequency Capacity Amount Data Listing Service
POST /v1/markets/ancillary-services/data/primary-frequency-capacity-amount
5.91.1. Description
It displays hourly total primary frequency capacity volume that the participants need to reserve for the real time frequency balancing.
5.91.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.91.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.91.4. Consumes
-
application/json
-
application/xml
5.91.5. Produces
-
application/json
-
application/xml
5.91.6. Tags
-
markets-ancillary-services-data-controller
5.92. Primary Frequency Capacity Price (PFCP) Data Listing Service
POST /v1/markets/ancillary-services/data/primary-frequency-capacity-price
5.92.1. Description
It displays Primary Frequency Capacity Price determined by the tender on an hourly basis. Tenders are held by Transmission System Operator.
5.92.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.92.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.92.4. Consumes
-
application/json
-
application/xml
5.92.5. Produces
-
application/json
-
application/xml
5.92.6. Tags
-
markets-ancillary-services-data-controller
5.93. Secondary Frequency Capacity Amount Data Listing Service
POST /v1/markets/ancillary-services/data/secondary-frequency-capacity-amount
5.93.1. Description
It displays hourly total secondary frequency capacity volume that the participants need to reserve for the real time frequency balancing.
5.93.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.93.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.93.4. Consumes
-
application/json
-
application/xml
5.93.5. Produces
-
application/json
-
application/xml
5.93.6. Tags
-
markets-ancillary-services-data-controller
5.94. Secondary Frequency Capacity Price (SFCP) Data Listing Service
POST /v1/markets/ancillary-services/data/secondary-frequency-capacity-price
5.94.1. Description
It displays Secondary Frequency Capacity Price determined by the tender on an hourly basis. Tenders are held by Transmission System Operator.
5.94.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.94.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.94.4. Consumes
-
application/json
-
application/xml
5.94.5. Produces
-
application/json
-
application/xml
5.94.6. Tags
-
markets-ancillary-services-data-controller
5.95. Primary Frequency Capacity Amount Export Service
POST /v1/markets/ancillary-services/export/primary-frequency-capacity-amount
5.95.1. Description
It displays hourly total primary frequency capacity volume that the participants need to reserve for the real time frequency balancing. Exports Primary Frequency Capacity Amount datas as XLSX, CSV or PDF formats.
5.95.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.95.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.95.4. Consumes
-
application/json
-
application/xml
5.95.5. Produces
-
application/json
-
application/xml
5.95.6. Tags
-
markets-ancillary-services-export-controller
5.96. Primary Frequency Capacity Price (PFCP) Export Service
POST /v1/markets/ancillary-services/export/primary-frequency-capacity-price
5.96.1. Description
It displays Primary Frequency Capacity Price determined by the tender on an hourly basis. Tenders are held by Transmission System Operator. Exports Primary Frequency Capacity Price (PFCP) datas as XLSX, CSV or PDF formats.
5.96.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.96.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.96.4. Consumes
-
application/json
-
application/xml
5.96.5. Produces
-
application/json
-
application/xml
5.96.6. Tags
-
markets-ancillary-services-export-controller
5.97. Secondary Frequency Capacity Amount Export Service
POST /v1/markets/ancillary-services/export/secondary-frequency-capacity-amount
5.97.1. Description
It displays hourly total secondary frequency capacity volume that the participants need to reserve for the real time frequency balancing. Exports Secondary Frequency Capacity Price (SFCP) datas as XLSX, CSV or PDF formats.
5.97.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.97.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.97.4. Consumes
-
application/json
-
application/xml
5.97.5. Produces
-
application/json
-
application/xml
5.97.6. Tags
-
markets-ancillary-services-export-controller
5.98. Secondary Frequency Capacity Price (SFCP) Export Service
POST /v1/markets/ancillary-services/export/secondary-frequency-capacity-price
5.98.1. Description
It displays Secondary Frequency Capacity Price determined by the tender on an hourly basis. Tenders are held by Transmission System Operator. Exports Secondary Frequency Capacity Price (SFCP) datas as XLSX, CSV or PDF formats.
5.98.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.98.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.98.4. Consumes
-
application/json
-
application/xml
5.98.5. Produces
-
application/json
-
application/xml
5.98.6. Tags
-
markets-ancillary-services-export-controller
5.99. Amount of Bilateral Contracts of EÃœAÅž - Authorized Retailers Data Listing Service
POST /v1/markets/bilateral-contracts/data/amount-of-bilateral-contracts
5.99.1. Description
It indicates the monthly totals of bilateral agreements realized between EÃœAÅž and Authorized Retail Companies according to the regulated tariff.
5.99.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.99.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.99.4. Consumes
-
application/json
-
application/xml
5.99.5. Produces
-
application/json
-
application/xml
5.99.6. Tags
-
markets-bilateral-contracts-data-controller
5.100. Bilateral Contracts Bid Quantity Data Listing Service
POST /v1/markets/bilateral-contracts/data/bilateral-contracts-bid-quantity
5.100.1. Description
It indicates the purchased power amount through bilateral power contracts.
5.100.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.100.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.100.4. Consumes
-
application/json
-
application/xml
5.100.5. Produces
-
application/json
-
application/xml
5.100.6. Tags
-
markets-bilateral-contracts-data-controller
5.101. Bilateral Contracts Offer Quantity Data Listing Service
POST /v1/markets/bilateral-contracts/data/bilateral-contracts-offer-quantity
5.101.1. Description
It indicates the sold power amount through bilateral power contracts.
5.101.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.101.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.101.4. Consumes
-
application/json
-
application/xml
5.101.5. Produces
-
application/json
-
application/xml
5.101.6. Tags
-
markets-bilateral-contracts-data-controller
5.102. Amount of Bilateral Contracts of EÃœAÅž - Authorized Retailers Export Service
POST /v1/markets/bilateral-contracts/export/amount-of-bilateral-contracts
5.102.1. Description
It indicates the monthly totals of bilateral agreements realized between EÃœAÅž and Authorized Retail Companies according to the regulated tariff. Exports Amount of Bilateral Contracts of EÃœAÅž - Authorized Retailers datas as XLSX, CSV or PDF formats.
5.102.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.102.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.102.4. Consumes
-
application/json
-
application/xml
5.102.5. Produces
-
application/json
-
application/xml
5.102.6. Tags
-
markets-bilateral-contracts-export-controller
5.103. Bilateral Contracts Bid Quantity Export Service
POST /v1/markets/bilateral-contracts/export/bilateral-contracts-bid-quantity
5.103.1. Description
It indicates the purchased power amount through bilateral power contracts. Exports Bilateral Contracts Bid Quantity datas as XLSX, CSV or PDF formats.
5.103.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.103.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.103.4. Consumes
-
application/json
-
application/xml
5.103.5. Produces
-
application/json
-
application/xml
5.103.6. Tags
-
markets-bilateral-contracts-export-controller
5.104. Bilateral Contracts Offer Quantity Export Service
POST /v1/markets/bilateral-contracts/export/bilateral-contracts-offer-quantity
5.104.1. Description
It indicates the sold power amount through bilateral power contracts. Exports Bilateral Contracts Offer Quantity datas as XLSX, CSV or PDF formats.
5.104.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.104.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.104.4. Consumes
-
application/json
-
application/xml
5.104.5. Produces
-
application/json
-
application/xml
5.104.6. Tags
-
markets-bilateral-contracts-export-controller
5.105. Down Regulation Instructions Data Listing Service
POST /v1/markets/bpm/data/order-summary-down
5.105.1. Description
Down Regulation Instructions quantities are released to power units to keep the system balanced in case of energy surplus. Derived from preceding 4 hours' instructions.
5.105.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.105.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.105.4. Consumes
-
application/json
-
application/xml
5.105.5. Produces
-
application/json
-
application/xml
5.105.6. Tags
-
markets-dgp-data-controller
5.106. Up Regulation Instructions Data Listing Service
POST /v1/markets/bpm/data/order-summary-up
5.106.1. Description
Up Regulation Instructions quantities are released to power units to keep the system balanced in case of energy deficit. Derived from preceding 4 hours instructions.
5.106.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.106.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.106.4. Consumes
-
application/json
-
application/xml
5.106.5. Produces
-
application/json
-
application/xml
5.106.6. Tags
-
markets-dgp-data-controller
5.107. System’s Direction Data Listing Service
POST /v1/markets/bpm/data/system-direction
5.107.1. Description
It displays whether the system is in energy surplus or deficit. Derived from preceding 4 hours' instructions.
5.107.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.107.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.107.4. Consumes
-
application/json
-
application/xml
5.107.5. Produces
-
application/json
-
application/xml
5.107.6. Tags
-
markets-dgp-data-controller
5.108. System Marginal Price Data Listing Service
POST /v1/markets/bpm/data/system-marginal-price
5.108.1. Description
Price that corresponds to the net regulation quantity of the Balancing Power Market. Derived from preceding 4 hours instructions.
5.108.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.108.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.108.4. Consumes
-
application/json
-
application/xml
5.108.5. Produces
-
application/json
-
application/xml
5.108.6. Tags
-
markets-dgp-data-controller
5.109. Down Regulation Instructions Export Service
POST /v1/markets/bpm/export/order-summary-down
5.109.1. Description
Down Regulation Instructions quantities are released to power units to keep the system balanced in case of energy surplus. Derived from preceding 4 hours' instructions. Exports Down Regulation Instructions datas as XLSX, CSV or PDF formats.
5.109.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.109.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.109.4. Consumes
-
application/json
-
application/xml
5.109.5. Produces
-
application/json
-
application/xml
5.109.6. Tags
-
markets-dgp-export-controller
5.110. Up Regulation Instructions Export Service
POST /v1/markets/bpm/export/order-summary-up
5.110.1. Description
Up Regulation Instructions quantities are released to power units to keep the system balanced in case of energy deficit. Derived from preceding 4 hours instructions. Exports Up Regulation Instructions datas as XLSX, CSV or PDF formats.
5.110.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.110.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.110.4. Consumes
-
application/json
-
application/xml
5.110.5. Produces
-
application/json
-
application/xml
5.110.6. Tags
-
markets-dgp-export-controller
5.111. System’s Direction Export Service
POST /v1/markets/bpm/export/system-direction
5.111.1. Description
It displays whether the system is in energy surplus or deficit. Derived from preceding 4 hours' instructions. Exports System’s Direction datas as XLSX, CSV or PDF formats.
5.111.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.111.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.111.4. Consumes
-
application/json
-
application/xml
5.111.5. Produces
-
application/json
-
application/xml
5.111.6. Tags
-
markets-dgp-export-controller
5.112. System Marginal Price Export Service
POST /v1/markets/bpm/export/system-marginal-price
5.112.1. Description
Price that corresponds to the net regulation quantity of the Balancing Power Market. Derived from preceding 4 hours instructions. Exports System Marginal Price datas as XLSX, CSV or PDF formats.
5.112.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.112.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.112.4. Consumes
-
application/json
-
application/xml
5.112.5. Produces
-
application/json
-
application/xml
5.112.6. Tags
-
markets-dgp-export-controller
5.113. DAM Block Bid Data Listing Service
POST /v1/markets/dam/data/amount-of-block-buying
5.113.1. Description
Blok Bid: Active electricity purchase bids of market participants participating in the day-ahead market that includes a single price during the specified time slot and variable volume information based on a given settlement period
5.113.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.113.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.113.4. Consumes
-
application/json
-
application/xml
5.113.5. Produces
-
application/json
-
application/xml
5.113.6. Tags
-
markets-gop-data-controller
5.114. DAM Block Offer Data Listing Service
POST /v1/markets/dam/data/amount-of-block-selling
5.114.1. Description
Block Offer: Active electricity sales offers of market participants participating in the day-ahead market that includes a single price during the specified time slot and variable volume information based on a given settlement period
5.114.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.114.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.114.4. Consumes
-
application/json
-
application/xml
5.114.5. Produces
-
application/json
-
application/xml
5.114.6. Tags
-
markets-gop-data-controller
5.115. DAM Matching Quantity Data Listing Service
POST /v1/markets/dam/data/clearing-quantity
5.115.1. Description
Hourly aggregate cleared order quantity.
5.115.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.115.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.115.4. Consumes
-
application/json
-
application/xml
5.115.5. Produces
-
application/json
-
application/xml
5.115.6. Tags
-
markets-gop-data-controller
5.116. DAM Clearing Quantity Organization Listing Service
POST /v1/markets/dam/data/clearing-quantity-organization-list
5.116.1. Description
Lists organizations for the DAM Clearing Quantity Data Listing Service.
5.116.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.116.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.116.4. Consumes
-
application/json
-
application/xml
5.116.5. Produces
-
application/json
-
application/xml
5.116.6. Tags
-
markets-gop-data-controller
5.117. DAM Trade Value Data Listing Service
POST /v1/markets/dam/data/day-ahead-market-trade-volume
5.117.1. Description
The hourly total financial volume of the matching bids in Day-Ahead Market.
5.117.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.117.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.117.4. Consumes
-
application/json
-
application/xml
5.117.5. Produces
-
application/json
-
application/xml
5.117.6. Tags
-
markets-gop-data-controller
5.118. DAM Flexible Buying Offer Quantity Data Listing Service
POST /v1/markets/dam/data/flexible-offer-buying-quantity
5.118.1. Description
Flexible Purchase Bid Quantity: The flexible purchase bid shall include the purchase volumes of the market participant participating in the day-ahead market for a specified order period within a certain order time period in terms of lots, which may vary on a settlement period basis.
5.118.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.118.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.118.4. Consumes
-
application/json
-
application/xml
5.118.5. Produces
-
application/json
-
application/xml
5.118.6. Tags
-
markets-gop-data-controller
5.119. DAM Flexible Selling Offer Quantity Data Listing Service
POST /v1/markets/dam/data/flexible-offer-selling-quantity
5.119.1. Description
Flexible Sales Offer Quantity: The flexible sales offer shall include the sales volumes of the market participant participating in the day-ahead market for a specified order period within a certain order time period in terms of lots, which may vary on a settlement period basis.
5.119.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.119.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.119.4. Consumes
-
application/json
-
application/xml
5.119.5. Produces
-
application/json
-
application/xml
5.119.6. Tags
-
markets-gop-data-controller
5.120. Interim Market Clearing Price (I.MCP) Data Listing Service
POST /v1/markets/dam/data/interim-mcp
5.120.1. Description
Interim Market Clearing Price is the temporary hourly energy price which is determined within the objection period with respect to orders that are cleared according to total supply and demand.It is the hourly power energy price for which the objection process has not been completed.
5.120.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.120.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.120.4. Consumes
-
application/json
-
application/xml
5.120.5. Produces
-
application/json
-
application/xml
5.120.6. Tags
-
markets-gop-data-controller
5.121. Interim Market Clearing Price (I.MCP) publi̇shed status service
GET /v1/markets/dam/data/interim-mcp-published-status
5.121.1. Description
Interim Market Clearing Price (I.MCP) publi̇shed status service
5.121.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.121.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.121.4. Produces
-
application/json
-
application/xml
5.121.5. Tags
-
markets-gop-data-controller
5.122. DAM Matched Flexible Offer Quantity Data Listing Service
POST /v1/markets/dam/data/matched-flexible-offer-quantity
5.122.1. Description
Matched Flexible Offer Quantity: Bid and offer matching quantities of flexible offers, which consist of quantities that can change for a given bid period during a given bid time interval
5.122.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.122.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.122.4. Consumes
-
application/json
-
application/xml
5.122.5. Produces
-
application/json
-
application/xml
5.122.6. Tags
-
markets-gop-data-controller
5.123. Market Clearing Price Listing Service
POST /v1/markets/dam/data/mcp
5.123.1. Description
Market Clearing Price: Hourly electricity purchase-sale price determined as a result of matching the purchase and sale bids for all bidding zones in the day-ahead market for a certain hour.The indicative Central Bank of the Republic of Turkey foreign exchange buying rate is taken as basis.
5.123.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.123.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.123.4. Consumes
-
application/json
-
application/xml
5.123.5. Produces
-
application/json
-
application/xml
5.123.6. Tags
-
markets-gop-data-controller
5.124. DAM Price Independent Bid Order Data Listing Service
POST /v1/markets/dam/data/price-independent-bid
5.124.1. Description
Price Independent Bid: Sum of the bids submitted hourly in the day ahead market without any price step.
5.124.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.124.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.124.4. Consumes
-
application/json
-
application/xml
5.124.5. Produces
-
application/json
-
application/xml
5.124.6. Tags
-
markets-gop-data-controller
5.125. DAM Price Independent Sales Order Data Listing Service
POST /v1/markets/dam/data/price-independent-offer
5.125.1. Description
Sum of the offers submitted hourly in the day ahead market without any price step.
5.125.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.125.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.125.4. Consumes
-
application/json
-
application/xml
5.125.5. Produces
-
application/json
-
application/xml
5.125.6. Tags
-
markets-gop-data-controller
5.126. DAM Side Payment Data Listing Service
POST /v1/markets/dam/data/side-payments
5.126.1. Description
Collected from the relevant market participants registered with the Day Ahead Market in accordance with the Electricity Market Balancing and Settlement Regulation for the financing of the gap between the daily system purchase amounts and the daily system sales amounts arising out of rounding off and block and flexible orders within the scope of the Day Ahead Market.Details regarding the calculation and distribution of the difference amount are included in the Side Payment Procedure.
5.126.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.126.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.126.4. Consumes
-
application/json
-
application/xml
5.126.5. Produces
-
application/json
-
application/xml
5.126.6. Tags
-
markets-gop-data-controller
5.127. DAM Submitted Bid Order Volume Data Listing Service
POST /v1/markets/dam/data/submitted-bid-order-volume
5.127.1. Description
Sum of hourly, block and flexible bid order volumes at 0 TL/MWh price step.
5.127.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.127.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.127.4. Consumes
-
application/json
-
application/xml
5.127.5. Produces
-
application/json
-
application/xml
5.127.6. Tags
-
markets-gop-data-controller
5.128. DAM Submitted Sales Order Volume Data Listing Service
POST /v1/markets/dam/data/submitted-sales-order-volume
5.128.1. Description
Submitted Offer Quantity: Sum of hourly, block and flexible offer quantities at maximum clearing price step.The Maximum Settlement Price has been abolished as of 01.10.2023.
5.128.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.128.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.128.4. Consumes
-
application/json
-
application/xml
5.128.5. Produces
-
application/json
-
application/xml
5.128.6. Tags
-
markets-gop-data-controller
5.129. DAM Supply-Demand Data Listing Service
POST /v1/markets/dam/data/supply-demand
5.129.1. Description
Displaying created order sets by adding block and flexible bids to hourly bids at each price step.Supply & Demand : The display of the bid/offer sets created by adding the accepted block and flexible bid/offer quantities to the hourly bid amount in each price breakdown.
5.129.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.129.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.129.4. Consumes
-
application/json
-
application/xml
5.129.5. Produces
-
application/json
-
application/xml
5.129.6. Tags
-
markets-gop-data-controller
5.130. Supply Demand Chart Data Listing Service
POST /v1/markets/dam/data/supply-demand-chart-data
5.130.1. Description
Gets and transforms the data for the supply demand page chart.
5.130.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.130.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.130.4. Consumes
-
application/json
-
application/xml
5.130.5. Produces
-
application/json
-
application/xml
5.130.6. Tags
-
markets-gop-data-controller
5.131. Supply Demand Hourly Mcp Chart Data Service
POST /v1/markets/dam/data/supply-demand-chart-ptf-data
5.131.1. Description
Gets and transforms the data for the supply demand hourly mcp page chart.
5.131.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.131.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.131.4. Consumes
-
application/json
-
application/xml
5.131.5. Produces
-
application/json
-
application/xml
5.131.6. Tags
-
markets-gop-data-controller
5.132. DAM Block Bid Export Service
POST /v1/markets/dam/export/amount-of-block-buying
5.132.1. Description
Blok Bid: Active electricity purchase bids of market participants participating in the day-ahead market that includes a single price during the specified time slot and variable volume information based on a given settlement period.Exports DAM Block Bid datas as XLSX, CSV or PDF formats.
5.132.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.132.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.132.4. Consumes
-
application/json
-
application/xml
5.132.5. Produces
-
application/json
-
application/xml
5.132.6. Tags
-
markets-gop-export-controller
5.133. DAM Block Offer Export Service
POST /v1/markets/dam/export/amount-of-block-selling
5.133.1. Description
Block Offer: Active electricity sales offers of market participants participating in the day-ahead market that includes a single price during the specified time slot and variable volume information based on a given settlement period.Exports DAM Block Offer datas as XLSX, CSV or PDF formats.
5.133.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.133.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.133.4. Consumes
-
application/json
-
application/xml
5.133.5. Produces
-
application/json
-
application/xml
5.133.6. Tags
-
markets-gop-export-controller
5.134. DAM Matching Quantity Export Service
POST /v1/markets/dam/export/clearing-quantity
5.134.1. Description
Hourly aggregate cleared order quantity.Exports DAM Matching Quantity datas as XLSX, CSV or PDF formats.
5.134.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.134.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.134.4. Consumes
-
application/json
-
application/xml
5.134.5. Produces
-
application/json
-
application/xml
5.134.6. Tags
-
markets-gop-export-controller
5.135. DAM Trade Value Export Service
POST /v1/markets/dam/export/day-ahead-market-trade-volume
5.135.1. Description
The hourly total financial volume of the matching bids in Day-Ahead Market.Exports DAM Trade Value datas as XLSX, CSV or PDF formats.
5.135.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.135.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.135.4. Consumes
-
application/json
-
application/xml
5.135.5. Produces
-
application/json
-
application/xml
5.135.6. Tags
-
markets-gop-export-controller
5.136. DAM Flexible Buying Offer Quantity Export Service
POST /v1/markets/dam/export/flexible-offer-buying-quantity
5.136.1. Description
Flexible Purchase Bid Quantity: The flexible purchase bid shall include the purchase volumes of the market participant participating in the day-ahead market for a specified order period within a certain order time period in terms of lots, which may vary on a settlement period basis.Exports DAM Flexible Buying Offer Quantity datas as XLSX, CSV or PDF formats.
5.136.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.136.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.136.4. Consumes
-
application/json
-
application/xml
5.136.5. Produces
-
application/json
-
application/xml
5.136.6. Tags
-
markets-gop-export-controller
5.137. DAM Flexible Selling Offer Quantity Export Service
POST /v1/markets/dam/export/flexible-offer-selling-quantity
5.137.1. Description
Flexible Sales Offer Quantity: The flexible sales offer shall include the sales volumes of the market participant participating in the day-ahead market for a specified order period within a certain order time period in terms of lots, which may vary on a settlement period basis.Exports DAM Flexible Selling Offer Quantity datas as XLSX, CSV or PDF formats.
5.137.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.137.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.137.4. Consumes
-
application/json
-
application/xml
5.137.5. Produces
-
application/json
-
application/xml
5.137.6. Tags
-
markets-gop-export-controller
5.138. Interim Market Clearing Price (I.MCP) Export Service
POST /v1/markets/dam/export/interim-mcp
5.138.1. Description
Interim Market Clearing Price is the temporary hourly energy price which is determined within the objection period with respect to orders that are cleared according to total supply and demand.It is the hourly power energy price for which the objection process has not been completed.Exports Interim Market Clearing Price (I.MCP) datas as XLSX, CSV or PDF formats.
5.138.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.138.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.138.4. Consumes
-
application/json
-
application/xml
5.138.5. Produces
-
application/json
-
application/xml
5.138.6. Tags
-
markets-gop-export-controller
5.139. DAM Matched Flexible Offer Quantity Export Service
POST /v1/markets/dam/export/matched-flexible-offer-quantity
5.139.1. Description
Matched Flexible Offer Quantity: Bid and offer matching quantities of flexible offers, which consist of quantities that can change for a given bid period during a given bid time interval.Exports DAM Matched Flexible Offer Quantity datas as XLSX, CSV or PDF formats.
5.139.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.139.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.139.4. Consumes
-
application/json
-
application/xml
5.139.5. Produces
-
application/json
-
application/xml
5.139.6. Tags
-
markets-gop-export-controller
5.140. Market Clearing Price Listing Export Service
POST /v1/markets/dam/export/mcp
5.140.1. Description
Market Clearing Price: Hourly electricity purchase-sale price determined as a result of matching the purchase and sale bids for all bidding zones in the day-ahead market for a certain hour.The indicative Central Bank of the Republic of Turkey foreign exchange buying rate is taken as basis.Exports MCP datas as XLSX, CSV or PDF formats.
5.140.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.140.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.140.4. Consumes
-
application/json
-
application/xml
5.140.5. Produces
-
application/json
-
application/xml
5.140.6. Tags
-
markets-gop-export-controller
5.141. DAM Price Independent Bid Order Export Service
POST /v1/markets/dam/export/price-independent-bid
5.141.1. Description
Price Independent Bid: Sum of the bids submitted hourly in the day ahead market without any price step.Exports DAM Price Independent Bid Order datas as XLSX, CSV or PDF formats.
5.141.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.141.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.141.4. Consumes
-
application/json
-
application/xml
5.141.5. Produces
-
application/json
-
application/xml
5.141.6. Tags
-
markets-gop-export-controller
5.142. DAM Price Independent Sales Order Export Service
POST /v1/markets/dam/export/price-independent-offer
5.142.1. Description
Sum of the offers submitted hourly in the day ahead market without any price step.Exports DAM Price Independent Sales Order datas as XLSX, CSV or PDF formats.
5.142.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.142.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.142.4. Consumes
-
application/json
-
application/xml
5.142.5. Produces
-
application/json
-
application/xml
5.142.6. Tags
-
markets-gop-export-controller
5.143. DAM Side Payment Export Service
POST /v1/markets/dam/export/side-payments
5.143.1. Description
Collected from the relevant market participants registered with the Day Ahead Market in accordance with the Electricity Market Balancing and Settlement Regulation for the financing of the gap between the daily system purchase amounts and the daily system sales amounts arising out of rounding off and block and flexible orders within the scope of the Day Ahead Market.Details regarding the calculation and distribution of the difference amount are included in the Side Payment Procedure.Exports DAM Side Payment datas as XLSX, CSV or PDF formats.
5.143.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.143.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.143.4. Consumes
-
application/json
-
application/xml
5.143.5. Produces
-
application/json
-
application/xml
5.143.6. Tags
-
markets-gop-export-controller
5.144. DAM Submitted Bid Order Volume Export Service
POST /v1/markets/dam/export/submitted-bid-order-volume
5.144.1. Description
Sum of hourly, block and flexible bid order volumes at 0 TL/MWh price step.Exports DAM Submitted Bid Order Volume datas as XLSX, CSV or PDF formats.
5.144.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.144.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.144.4. Consumes
-
application/json
-
application/xml
5.144.5. Produces
-
application/json
-
application/xml
5.144.6. Tags
-
markets-gop-export-controller
5.145. DAM Submitted Sales Order Volume Export Service
POST /v1/markets/dam/export/submitted-sales-order-volume
5.145.1. Description
Submitted Offer Quantity: Sum of hourly, block and flexible offer quantities at maximum clearing price step.The Maximum Settlement Price has been abolished as of 01.10.2023.Exports DAM Submitted Sales Order Volume datas as XLSX, CSV or PDF formats.
5.145.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.145.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.145.4. Consumes
-
application/json
-
application/xml
5.145.5. Produces
-
application/json
-
application/xml
5.145.6. Tags
-
markets-gop-export-controller
5.146. DAM Supply-Demand Export Service
POST /v1/markets/dam/export/supply-demand
5.146.1. Description
Displaying created order sets by adding block and flexible bids to hourly bids at each price step.Supply & Demand : The display of the bid/offer sets created by adding the accepted block and flexible bid/offer quantities to the hourly bid amount in each price breakdown.Exports DAM Supply-Demand datas as XLSX, CSV or PDF formats.
5.146.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.146.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.146.4. Consumes
-
application/json
-
application/xml
5.146.5. Produces
-
application/json
-
application/xml
5.146.6. Tags
-
markets-gop-export-controller
5.147. Market Message System Data Listing Service
POST /v1/markets/data/market-message-system
5.147.1. Description
It is the outage or maintenance information of the relevant power plant.
5.147.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.147.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.147.4. Consumes
-
application/json
-
application/xml
5.147.5. Produces
-
application/json
-
application/xml
5.147.6. Tags
-
markets-data-controller
5.148. Maximum Settlement Price (MSP) Data Listing Service
POST /v1/markets/data/maximum-settlement-price
5.148.1. Description
These are the 'Maximum Settlement Price' values used in calculating the Support Fee by Source. MSP application has been abolished as of October 2023.
5.148.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.148.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.148.4. Consumes
-
application/json
-
application/xml
5.148.5. Produces
-
application/json
-
application/xml
5.148.6. Tags
-
markets-data-controller
5.149. Market Message System Power Plant List Service
POST /v1/markets/data/power-plant-list-by-organization-id
5.149.1. Description
Returns Power Plant list by the given organization’s id.
5.149.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.149.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.149.4. Consumes
-
application/json
-
application/xml
5.149.5. Produces
-
application/json
-
application/xml
5.149.6. Tags
-
markets-data-controller
5.150. Market Message System Injection/Withdrawal Unit List Service
POST /v1/markets/data/uevcb-list-by-power-plant-id
5.150.1. Description
Returns Injection/Withdrawal Unit list by the given power plant’s id.
5.150.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.150.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.150.4. Consumes
-
application/json
-
application/xml
5.150.5. Produces
-
application/json
-
application/xml
5.150.6. Tags
-
markets-data-controller
5.151. Market Message System Message Type List Service
GET /v1/markets/data/umm-message-type-list
5.151.1. Description
Message Type List
5.151.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.151.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.151.4. Produces
-
application/json
-
application/xml
5.151.5. Tags
-
markets-data-controller
5.152. Market Message System Region List Service
GET /v1/markets/data/umm-region-list
5.152.1. Description
Market Message System Page Region List Service
5.152.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.152.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.152.4. Produces
-
application/json
-
application/xml
5.152.5. Tags
-
markets-data-controller
5.153. Market Message System Export Service
POST /v1/markets/export/market-message-system
5.153.1. Description
It is the outage or maintenance information of the relevant power plant.Exports Market Message System datas as XLSX, CSV or PDF formats.
5.153.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.153.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.153.4. Consumes
-
application/json
-
application/xml
5.153.5. Produces
-
application/json
-
application/xml
5.153.6. Tags
-
markets-export-controller
5.154. Maximum Settlement Price (MSP) Export Service
POST /v1/markets/export/maximum-settlement-price
5.154.1. Description
These are the 'Maximum Settlement Price' values used in calculating the Support Fee by Source. MSP application has been abolished as of October 2023. Exports Maximum Settlement Price (MSP) datas as XLSX, CSV or PDF formats.
5.154.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.154.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.154.4. Consumes
-
application/json
-
application/xml
5.154.5. Produces
-
application/json
-
application/xml
5.154.6. Tags
-
markets-export-controller
5.155. Market Participants Data Listing Service
POST /v1/markets/general-data/data/market-participants
5.155.1. Description
It displays the participation status of market Participants in DAM, IDM, PFM, YEK-G markets. It also reports the activity status the participants.
5.155.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.155.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.155.4. Consumes
-
application/json
-
application/xml
5.155.5. Produces
-
application/json
-
application/xml
5.155.6. Tags
-
markets-general-data-data-controller
5.156. Market Participants Organization Filter List Service
GET /v1/markets/general-data/data/market-participants-organization-filter-list
5.156.1. Description
Market Participants Organization Filter List
5.156.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.156.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.156.4. Produces
-
application/json
-
application/xml
5.156.5. Tags
-
markets-general-data-data-controller
5.157. Participant Count Based Upon License Type Data Listing Service
POST /v1/markets/general-data/data/participant-count-based-upon-license-type
5.157.1. Description
It indicates the number of market participants by the licence types.
5.157.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.157.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.157.4. Consumes
-
application/json
-
application/xml
5.157.5. Produces
-
application/json
-
application/xml
5.157.6. Tags
-
markets-general-data-data-controller
5.158. Market Participants Export Service
POST /v1/markets/general-data/export/market-participants
5.158.1. Description
It displays the participation status of market Participants in DAM, IDM, PFM, YEK-G markets. It also reports the activity status the participants. Exports Market Participants datas as XLSX, CSV or PDF formats.
5.158.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.158.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.158.4. Consumes
-
application/json
-
application/xml
5.158.5. Produces
-
application/json
-
application/xml
5.158.6. Tags
-
markets-general-data-export-controller
5.159. Participant Count Based Upon License Type Export Service
POST /v1/markets/general-data/export/participant-count-based-upon-license-type
5.159.1. Description
It indicates the number of market participants by the licence types. Exports Participant Count Based Upon License Type datas as XLSX, CSV or PDF formats.
5.159.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.159.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.159.4. Consumes
-
application/json
-
application/xml
5.159.5. Produces
-
application/json
-
application/xml
5.159.6. Tags
-
markets-general-data-export-controller
5.160. IDM Bid/Offer Quantities Data Listing Service
POST /v1/markets/idm/data/bid-offer-quantities
5.160.1. Description
It is the total quantity of orders in buy and sell side in the Intra Day Market.
5.160.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.160.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.160.4. Consumes
-
application/json
-
application/xml
5.160.5. Produces
-
application/json
-
application/xml
5.160.6. Tags
-
markets-gip-data-controller
5.161. IDM Matching Quantity Data Listing Service
POST /v1/markets/idm/data/matching-quantity
5.161.1. Description
It is the total matching quantity in the intraday market which is categorized as hourly or block depending on the contract type.
5.161.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.161.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.161.4. Consumes
-
application/json
-
application/xml
5.161.5. Produces
-
application/json
-
application/xml
5.161.6. Tags
-
markets-gip-data-controller
5.162. IDM Min.-Max. Bid Price Data Listing Service
POST /v1/markets/idm/data/min-max-bid-price
5.162.1. Description
It is the highest and lowest bid price displayed in the Intraday Market according to the contract type.
5.162.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.162.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.162.4. Consumes
-
application/json
-
application/xml
5.162.5. Produces
-
application/json
-
application/xml
5.162.6. Tags
-
markets-gip-data-controller
5.163. IDM Min.-Max. Matching Price Data Listing Service
POST /v1/markets/idm/data/min-max-matching-price
5.163.1. Description
It is the min and max matching price in the intraday market which is categorized as hourly or block depending on the contract type.
5.163.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.163.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.163.4. Consumes
-
application/json
-
application/xml
5.163.5. Produces
-
application/json
-
application/xml
5.163.6. Tags
-
markets-gip-data-controller
5.164. IDM Min - Max Offer Price Data Listing Service
POST /v1/markets/idm/data/min-max-sales-offer-price
5.164.1. Description
Max. and min. offer price given as hourly or block depending on the contract type
5.164.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.164.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.164.4. Consumes
-
application/json
-
application/xml
5.164.5. Produces
-
application/json
-
application/xml
5.164.6. Tags
-
markets-gip-data-controller
5.165. IDM Trade Value Data Listing Service
POST /v1/markets/idm/data/trade-value
5.165.1. Description
It is the hourly total financial volume of the matching bids and offers in the Intraday Market.
5.165.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.165.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.165.4. Consumes
-
application/json
-
application/xml
5.165.5. Produces
-
application/json
-
application/xml
5.165.6. Tags
-
markets-gip-data-controller
5.166. IDM Transaction History Data Listing Service
POST /v1/markets/idm/data/transaction-history
5.166.1. Description
It shows the prices and quantities of instant transactions realized in the Intraday Market.
5.166.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.166.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.166.4. Consumes
-
application/json
-
application/xml
5.166.5. Produces
-
application/json
-
application/xml
5.166.6. Tags
-
markets-gip-data-controller
5.167. IDM Weighted Average Price Data Listing Service
POST /v1/markets/idm/data/weighted-average-price
5.167.1. Description
It is the hourly weighted average price for the transactions on each contract in Intraday Market.
5.167.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.167.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.167.4. Consumes
-
application/json
-
application/xml
5.167.5. Produces
-
application/json
-
application/xml
5.167.6. Tags
-
markets-gip-data-controller
5.168. IDM Bid/Offer Quantities Export Service
POST /v1/markets/idm/export/bid-offer-quantities
5.168.1. Description
It is the total quantity of orders in buy and sell side in the Intra Day Market. Exports IDM Bid/Offer Quantities datas as XLSX, CSV or PDF formats.
5.168.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.168.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.168.4. Consumes
-
application/json
-
application/xml
5.168.5. Produces
-
application/json
-
application/xml
5.168.6. Tags
-
markets-gip-export-controller
5.169. IDM Matching Quantity Export Service
POST /v1/markets/idm/export/matching-quantity
5.169.1. Description
It is the total matching quantity in the intraday market which is categorized as hourly or block depending on the contract type. Exports IDM Matching Quantity datas as XLSX, CSV or PDF formats.
5.169.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.169.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.169.4. Consumes
-
application/json
-
application/xml
5.169.5. Produces
-
application/json
-
application/xml
5.169.6. Tags
-
markets-gip-export-controller
5.170. IDM Min.-Max. Bid Price Export Service
POST /v1/markets/idm/export/min-max-bid-price
5.170.1. Description
It is the highest and lowest bid price displayed in the Intraday Market according to the contract type. Exports IDM Min.-Max. Bid Price datas as XLSX, CSV or PDF formats.
5.170.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.170.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.170.4. Consumes
-
application/json
-
application/xml
5.170.5. Produces
-
application/json
-
application/xml
5.170.6. Tags
-
markets-gip-export-controller
5.171. IDM Min.-Max. Matching Price Export Service
POST /v1/markets/idm/export/min-max-matching-price
5.171.1. Description
It is the min and max matching price in the intraday market which is categorized as hourly or block depending on the contract type. Exports IDM Min.-Max. Matching Price datas as XLSX, CSV or PDF formats.
5.171.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.171.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.171.4. Consumes
-
application/json
-
application/xml
5.171.5. Produces
-
application/json
-
application/xml
5.171.6. Tags
-
markets-gip-export-controller
5.172. IDM Min - Max Offer Price Export Service
POST /v1/markets/idm/export/min-max-sales-offer-price
5.172.1. Description
Max. and min. offer price given as hourly or block depending on the contract type. Exports IDM Min - Max Offer Price datas as XLSX, CSV or PDF formats.
5.172.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.172.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.172.4. Consumes
-
application/json
-
application/xml
5.172.5. Produces
-
application/json
-
application/xml
5.172.6. Tags
-
markets-gip-export-controller
5.173. IDM Trade Value Export Service
POST /v1/markets/idm/export/trade-value
5.173.1. Description
It is the hourly total financial volume of the matching bids and offers in the Intraday Market. Exports IDM Trade Value datas as XLSX, CSV or PDF formats.
5.173.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.173.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.173.4. Consumes
-
application/json
-
application/xml
5.173.5. Produces
-
application/json
-
application/xml
5.173.6. Tags
-
markets-gip-export-controller
5.174. IDM Transaction History Export Service
POST /v1/markets/idm/export/transaction-history
5.174.1. Description
It shows the prices and quantities of instant transactions realized in the Intraday Market. Exports IDM Transaction History datas as XLSX, CSV or PDF formats.
5.174.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.174.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.174.4. Consumes
-
application/json
-
application/xml
5.174.5. Produces
-
application/json
-
application/xml
5.174.6. Tags
-
markets-gip-export-controller
5.175. IDM Weighted Average Price Export Service
POST /v1/markets/idm/export/weighted-average-price
5.175.1. Description
It is the hourly weighted average price for the transactions on each contract in Intraday Market. Exports IDM Weighted Average Price datas as XLSX, CSV or PDF formats.
5.175.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.175.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.175.4. Consumes
-
application/json
-
application/xml
5.175.5. Produces
-
application/json
-
application/xml
5.175.6. Tags
-
markets-gip-export-controller
5.176. Balance Responsible Group Imbalance Quantity Data Listing Service
POST /v1/markets/imbalance/data/dsg-imbalance-quantity
5.176.1. Description
Parties responsible for the balance may come together within the scope of balancing obligations and form a group responsible for the balance. A balance responsible party from within the group on behalf of the balance responsible group assumes the financial responsibility of the balance responsible group to the Market Operator regarding the energy imbalance. It is the amount that indicates how much the organization in the portfolio of the parties responsible for the balance deviates from the production/consumption values realized as a result of market transactions.
5.176.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.176.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.176.4. Consumes
-
application/json
-
application/xml
5.176.5. Produces
-
application/json
-
application/xml
5.176.6. Tags
-
markets-imbalance-data-controller
5.177. DSG Organization List Service
POST /v1/markets/imbalance/data/dsg-organization-list
5.177.1. Description
Organization List used on Balance Responsible Group Imbalance Quantity
5.177.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.177.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.177.4. Consumes
-
application/json
-
application/xml
5.177.5. Produces
-
application/json
-
application/xml
5.177.6. Tags
-
markets-imbalance-data-controller
5.178. Imbalance Cost Data Listing Service
POST /v1/markets/imbalance/data/imbalance-amount
5.178.1. Description
It is the amount that the market participants are credited/debt in case of deviations from the production/consumption values realized as a result of the Day-ahead Market, Intraday Market, Balancing Power Market and Bilateral Agreement transactions.
5.178.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.178.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.178.4. Consumes
-
application/json
-
application/xml
5.178.5. Produces
-
application/json
-
application/xml
5.178.6. Tags
-
markets-imbalance-data-controller
5.179. Imbalance Quantity Data Listing Service
POST /v1/markets/imbalance/data/imbalance-quantity
5.179.1. Description
It is the amount that indicates how much the market participants deviate from the production/consumption values realized as a result of the Day-ahead Market, Intraday Market, Balancing Power Market and Bilateral Agreement transactions.
5.179.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.179.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.179.4. Consumes
-
application/json
-
application/xml
5.179.5. Produces
-
application/json
-
application/xml
5.179.6. Tags
-
markets-imbalance-data-controller
5.180. Balance Responsible Group Imbalance Quantity Export Service
POST /v1/markets/imbalance/export/dsg-imbalance-quantity
5.180.1. Description
Parties responsible for the balance may come together within the scope of balancing obligations and form a group responsible for the balance. A balance responsible party from within the group on behalf of the balance responsible group assumes the financial responsibility of the balance responsible group to the Market Operator regarding the energy imbalance. It is the amount that indicates how much the organization in the portfolio of the parties responsible for the balance deviates from the production/consumption values realized as a result of market transactions. Exports Balance Responsible Group Imbalance Quantity datas as XLSX, CSV or PDF formats.
5.180.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.180.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.180.4. Consumes
-
application/json
-
application/xml
5.180.5. Produces
-
application/json
-
application/xml
5.180.6. Tags
-
markets-imbalance-export-controller
5.181. Imbalance Cost Export Service
POST /v1/markets/imbalance/export/imbalance-amount
5.181.1. Description
It is the amount that the market participants are credited/debt in case of deviations from the production/consumption values realized as a result of the Day-ahead Market, Intraday Market, Balancing Power Market and Bilateral Agreement transactions. Exports Imbalance Cost datas as XLSX, CSV or PDF formats.
5.181.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.181.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.181.4. Consumes
-
application/json
-
application/xml
5.181.5. Produces
-
application/json
-
application/xml
5.181.6. Tags
-
markets-imbalance-export-controller
5.182. Imbalance Quantity Export Service
POST /v1/markets/imbalance/export/imbalance-quantity
5.182.1. Description
It is the amount that indicates how much the market participants deviate from the production/consumption values realized as a result of the Day-ahead Market, Intraday Market, Balancing Power Market and Bilateral Agreement transactions. Exports Imbalance Quantity datas as XLSX, CSV or PDF formats.
5.182.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.182.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.182.4. Consumes
-
application/json
-
application/xml
5.182.5. Produces
-
application/json
-
application/xml
5.182.6. Tags
-
markets-imbalance-export-controller
5.183. PFM Contract Price Summary Data Listing Service
POST /v1/markets/pfm/data/contract-price-summary
5.183.1. Description
First, highest, lowest, last matching prices and DIP of the contracts that are open for trading at the filtered dates.
5.183.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.183.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.183.4. Consumes
-
application/json
-
application/xml
5.183.5. Produces
-
application/json
-
application/xml
5.183.6. Tags
-
markets-vep-data-controller
5.184. Delivery Period Listing Service
POST /v1/markets/pfm/data/delivery-period-list
5.184.1. Description
For VEP pages gives Delivery Period List
5.184.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.184.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.184.4. Consumes
-
application/json
-
application/xml
5.184.5. Produces
-
application/json
-
application/xml
5.184.6. Tags
-
markets-vep-data-controller
5.185. Delivery Year Listing Service
POST /v1/markets/pfm/data/delivery-year-list
5.185.1. Description
For VEP pages gives Delivery Year list
5.185.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.185.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.185.4. Consumes
-
application/json
-
application/xml
5.185.5. Produces
-
application/json
-
application/xml
5.185.6. Tags
-
markets-vep-data-controller
5.186. PFM Daily Index Price Data Listing Service
POST /v1/markets/pfm/data/ggf
5.186.1. Description
The Daily Index Price of contracts that are open for trading at the filtered dates. Daily Index Price is published at 16:45 o’clock on business days for the contracts that are open for trading. US Dollar and Euro Exchange rates are based on the indicative Republic of Turkey Central Bank foreign Exchange buying rates.
5.186.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.186.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.186.4. Consumes
-
application/json
-
application/xml
5.186.5. Produces
-
application/json
-
application/xml
5.186.6. Tags
-
markets-vep-data-controller
5.187. DIP Delivery Period List
POST /v1/markets/pfm/data/ggf-delivery-period-list
5.187.1. Description
DIP Delivery Period List
5.187.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.187.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.187.4. Consumes
-
application/json
-
application/xml
5.187.5. Produces
-
application/json
-
application/xml
5.187.6. Tags
-
markets-vep-data-controller
5.188. Load Type Data Listing Service
POST /v1/markets/pfm/data/load-type-list
5.188.1. Description
For VEP pages gives Load Type list
5.188.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.188.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.188.4. Consumes
-
application/json
-
application/xml
5.188.5. Produces
-
application/json
-
application/xml
5.188.6. Tags
-
markets-vep-data-controller
5.189. PFM Order Prices Data Listing Service
POST /v1/markets/pfm/data/offer-price
5.189.1. Description
The price information of the best bid and sell orders of each contract in VEP, the price of the last match and its change according to the previous match.
5.189.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.189.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.189.4. Consumes
-
application/json
-
application/xml
5.189.5. Produces
-
application/json
-
application/xml
5.189.6. Tags
-
markets-vep-data-controller
5.190. PFM Open Position Data Listing Service
POST /v1/markets/pfm/data/open-position
5.190.1. Description
Open Position of the contracts that are open for trading at the filtered dates.
5.190.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.190.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.190.4. Consumes
-
application/json
-
application/xml
5.190.5. Produces
-
application/json
-
application/xml
5.190.6. Tags
-
markets-vep-data-controller
5.191. PFM Trade Value Data Listing Service
POST /v1/markets/pfm/data/pfm-trade-value
5.191.1. Description
Trade value of the contracts that are open for trading at the filtered dates.
5.191.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.191.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.191.4. Consumes
-
application/json
-
application/xml
5.191.5. Produces
-
application/json
-
application/xml
5.191.6. Tags
-
markets-vep-data-controller
5.192. PFM Transaction History Data Listing Service
POST /v1/markets/pfm/data/pfm-transaction-history
5.192.1. Description
Transaction history of the contracts that are open for trading at the filtered dates.
5.192.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.192.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.192.4. Consumes
-
application/json
-
application/xml
5.192.5. Produces
-
application/json
-
application/xml
5.192.6. Tags
-
markets-vep-data-controller
5.193. Transaction History Delivery Period List
POST /v1/markets/pfm/data/th-delivery-period-list
5.193.1. Description
Transaction History Delivery Period List
5.193.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.193.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.193.4. Consumes
-
application/json
-
application/xml
5.193.5. Produces
-
application/json
-
application/xml
5.193.6. Tags
-
markets-vep-data-controller
5.194. PFM Matching Quantity Data Listing Service
POST /v1/markets/pfm/data/vep-matching-quantity
5.194.1. Description
Matching quantity of the contracts that are open for trading at the filtered dates.
5.194.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.194.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.194.4. Consumes
-
application/json
-
application/xml
5.194.5. Produces
-
application/json
-
application/xml
5.194.6. Tags
-
markets-vep-data-controller
5.195. PFM Contract Price Summary Export Service
POST /v1/markets/pfm/export/contract-price-summary
5.195.1. Description
First, highest, lowest, last matching prices and DIP of the contracts that are open for trading at the filtered dates. Exports PFM Contract Price Summary datas as XLSX, CSV or PDF formats.
5.195.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.195.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.195.4. Consumes
-
application/json
-
application/xml
5.195.5. Produces
-
application/json
-
application/xml
5.195.6. Tags
-
markets-vep-export-controller
5.196. PFM Daily Index Price Export Service
POST /v1/markets/pfm/export/ggf
5.196.1. Description
The Daily Index Price of contracts that are open for trading at the filtered dates. Daily Index Price is published at 16:45 o’clock on business days for the contracts that are open for trading. US Dollar and Euro Exchange rates are based on the indicative Republic of Turkey Central Bank foreign Exchange buying rates. Exports PFM Daily Index Price datas as XLSX, CSV or PDF formats.
5.196.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.196.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.196.4. Consumes
-
application/json
-
application/xml
5.196.5. Produces
-
application/json
-
application/xml
5.196.6. Tags
-
markets-vep-export-controller
5.197. PFM Order Prices Export Service
POST /v1/markets/pfm/export/offer-price
5.197.1. Description
The price information of the best bid and sell orders of each contract in VEP, the price of the last match and its change according to the previous match. Exports PFM Order Prices datas as XLSX, CSV or PDF formats.
5.197.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.197.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.197.4. Consumes
-
application/json
-
application/xml
5.197.5. Produces
-
application/json
-
application/xml
5.197.6. Tags
-
markets-vep-export-controller
5.198. PFM Open Position Export Service
POST /v1/markets/pfm/export/open-position
5.198.1. Description
Open Position of the contracts that are open for trading at the filtered dates. Exports PFM Open Position datas as XLSX, CSV or PDF formats.
5.198.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.198.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.198.4. Consumes
-
application/json
-
application/xml
5.198.5. Produces
-
application/json
-
application/xml
5.198.6. Tags
-
markets-vep-export-controller
5.199. PFM Trade Value Export Service
POST /v1/markets/pfm/export/pfm-trade-value
5.199.1. Description
Trade value of the contracts that are open for trading at the filtered dates. Exports PFM Trade Value datas as XLSX, CSV or PDF formats.
5.199.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.199.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.199.4. Consumes
-
application/json
-
application/xml
5.199.5. Produces
-
application/json
-
application/xml
5.199.6. Tags
-
markets-vep-export-controller
5.200. PFM Transaction History Export Service
POST /v1/markets/pfm/export/pfm-transaction-history
5.200.1. Description
Transaction history of the contracts that are open for trading at the filtered dates. Exports PFM Transaction History datas as XLSX, CSV or PDF formats.
5.200.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.200.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.200.4. Consumes
-
application/json
-
application/xml
5.200.5. Produces
-
application/json
-
application/xml
5.200.6. Tags
-
markets-vep-export-controller
5.201. PFM Matching Quantity Export Service
POST /v1/markets/pfm/export/vep-matching-quantity
5.201.1. Description
Matching quantity of the contracts that are open for trading at the filtered dates. Exports PFM Matching Quantity datas as XLSX, CSV or PDF formats.
5.201.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.201.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.201.4. Consumes
-
application/json
-
application/xml
5.201.5. Produces
-
application/json
-
application/xml
5.201.6. Tags
-
markets-vep-export-controller
5.202. Distribution List Service
GET /v1/markets/retroactive-adjustment/data/distribution-list
5.202.1. Description
GDDK Distribution List
5.202.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.202.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.202.4. Produces
-
application/json
-
application/xml
5.202.5. Tags
-
markets-gddk-data-controller
5.203. Meter Count Subject To Retroactive Adjustment Data Listing Service
POST /v1/markets/retroactive-adjustment/data/meter-count-subject-to-retroactive-adjustment
5.203.1. Description
The item that is reflected on the invoice due to under- or over-invoicing of the relevant month’s consumption in the previous 12 months is called 'Retroactive Adjustment Item'. This data refers to the number of meters associated with Retroactive Adjustment Item.
5.203.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.203.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.203.4. Consumes
-
application/json
-
application/xml
5.203.5. Produces
-
application/json
-
application/xml
5.203.6. Tags
-
markets-gddk-data-controller
5.204. Meter Volumes Subject to Retroactive Adjustment Data Listing Service
POST /v1/markets/retroactive-adjustment/data/meter-volume
5.204.1. Description
The item that is reflected on the invoice due to under- or over-invoicing of the relevant month’s consumption in the previous 12 months is called 'Retroactive Adjustment Item'. This data refers to the volume of meters associated with Retroactive Adjustment Item.
5.204.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.204.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.204.4. Consumes
-
application/json
-
application/xml
5.204.5. Produces
-
application/json
-
application/xml
5.204.6. Tags
-
markets-gddk-data-controller
5.205. Organization List Service
GET /v1/markets/retroactive-adjustment/data/organization-list
5.205.1. Description
GDDK Organization List
5.205.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.205.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.205.4. Produces
-
application/json
-
application/xml
5.205.5. Tags
-
markets-gddk-data-controller
5.206. Retroactive Adjustment Sum Data Listing Service
POST /v1/markets/retroactive-adjustment/data/retroactive-adjustment-sum
5.206.1. Description
The item that is reflected on the invoice due to under- or over-invoicing of the relevant month’s consumption in the previous 12 months is called 'Retroactive Adjustment Item'. This data refers to the financial amount associated with Retroactive Adjustment Item.
5.206.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.206.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.206.4. Consumes
-
application/json
-
application/xml
5.206.5. Produces
-
application/json
-
application/xml
5.206.6. Tags
-
markets-gddk-data-controller
5.207. Customer Profile Group List Service
GET /v1/markets/retroactive-adjustment/data/subscriber-profile-group-list
5.207.1. Description
GDDK Customer Profile Group List
5.207.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.207.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.207.4. Produces
-
application/json
-
application/xml
5.207.5. Tags
-
markets-gddk-data-controller
5.208. GDDK Volume Customer Profile Group List Service
GET /v1/markets/retroactive-adjustment/data/volume-subscriber-profile-group-list
5.208.1. Description
GDDK Volume Customer Profile Group List
5.208.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.208.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.208.4. Produces
-
application/json
-
application/xml
5.208.5. Tags
-
markets-gddk-data-controller
5.209. Meter Count Subject To Retroactive Adjustment Export Service
POST /v1/markets/retroactive-adjustment/export/meter-count-subject-to-retroactive-adjustment
5.209.1. Description
The item that is reflected on the invoice due to under- or over-invoicing of the relevant month’s consumption in the previous 12 months is called 'Retroactive Adjustment Item'. This data refers to the number of meters associated with Retroactive Adjustment Item.Exports Meter Count Subject To Retroactive Adjustment datas as XLSX, CSV or PDF formats.
5.209.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.209.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.209.4. Consumes
-
application/json
-
application/xml
5.209.5. Produces
-
application/json
-
application/xml
5.209.6. Tags
-
markets-gddk-export-controller
5.210. Meter Volumes Subject to Retroactive Adjustment Export Service
POST /v1/markets/retroactive-adjustment/export/meter-volume
5.210.1. Description
The item that is reflected on the invoice due to under- or over-invoicing of the relevant month’s consumption in the previous 12 months is called 'Retroactive Adjustment Item'. This data refers to the volume of meters associated with Retroactive Adjustment Item.Exports Meter Volumes Subject to Retroactive Adjustment datas as XLSX, CSV or PDF formats.
5.210.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.210.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.210.4. Consumes
-
application/json
-
application/xml
5.210.5. Produces
-
application/json
-
application/xml
5.210.6. Tags
-
markets-gddk-export-controller
5.211. Retroactive Adjustment Sum Export Service
POST /v1/markets/retroactive-adjustment/export/retroactive-adjustment-sum
5.211.1. Description
The item that is reflected on the invoice due to under- or over-invoicing of the relevant month’s consumption in the previous 12 months is called 'Retroactive Adjustment Item'. This data refers to the financial amount associated with Retroactive Adjustment Item.Exports Retroactive Adjustment Sum datas as XLSX, CSV or PDF formats.
5.211.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.211.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.211.4. Consumes
-
application/json
-
application/xml
5.211.5. Produces
-
application/json
-
application/xml
5.211.6. Tags
-
markets-gddk-export-controller
5.212. YEK-G Bilateral Contract Amount Data Listing Service
POST /v1/markets/yek-g/data/bilateral-contract-list
5.212.1. Description
It displays the number of YEK-G documents transferred between accounts on the selected date. In the Bilateral Contract Market, data is published after 15:00 on the following business day.
5.212.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.212.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.212.4. Consumes
-
application/json
-
application/xml
5.212.5. Produces
-
application/json
-
application/xml
5.212.6. Tags
-
markets-yekg-data-controller
5.213. Cancelation Quantity of YEK-G Documents Data Listing Service
POST /v1/markets/yek-g/data/cancelation-quantity
5.213.1. Description
Indicates the number of cancelation of the YEK-G Document to be used for disclosure on the selected date. The data is published after 15:00 on the following business day of the Organized YEK-G and YEK-G Bilateral Agreements Market.
5.213.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.213.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.213.4. Consumes
-
application/json
-
application/xml
5.213.5. Produces
-
application/json
-
application/xml
5.213.6. Tags
-
markets-yekg-data-controller
5.214. YEK-G Expiry Quantity Data Listing Service
POST /v1/markets/yek-g/data/expiry-quantity
5.214.1. Description
It displays the total number of YEK-G documents cancelled due to the fact that 12 months have passed since the production period. In the Bilateral Agreement Market, data is published after 15:00 on the following business day, and in the Organized Market, after the post-session period.
5.214.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.214.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.214.4. Consumes
-
application/json
-
application/xml
5.214.5. Produces
-
application/json
-
application/xml
5.214.6. Tags
-
markets-yekg-data-controller
5.215. Issued Quantity of YEK-G Documents Data Listing Service
POST /v1/markets/yek-g/data/exported-document-quantity
5.215.1. Description
It displays the total number of YEK-G documents issued to user accounts on a resource basis on the selected date. The data is published after 15:00 on the business day when the Organized YEK-G and YEK-G Bilateral Contracts Market is followed.
5.215.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.215.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.215.4. Consumes
-
application/json
-
application/xml
5.215.5. Produces
-
application/json
-
application/xml
5.215.6. Tags
-
markets-yekg-data-controller
5.216. YEK-G Organized Market Bid/Ask Quantity Data Listing Service
POST /v1/markets/yek-g/data/market-bid-ask-quantity
5.216.1. Description
It displays resourse based bid and offer amounts given in Organized YEK-G Market.
5.216.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.216.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.216.4. Consumes
-
application/json
-
application/xml
5.216.5. Produces
-
application/json
-
application/xml
5.216.6. Tags
-
markets-yekg-data-controller
5.217. YEK-G Min. – Max. Matching Price Data Listing Service
POST /v1/markets/yek-g/data/min-max-match-amount-list
5.217.1. Description
It displays the resource based minimum and maximum macthed YEK-G document prices in Organized YEK-G market sessions. Data is published in the Organized YEK-G Market during the session.
5.217.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.217.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.217.4. Consumes
-
application/json
-
application/xml
5.217.5. Produces
-
application/json
-
application/xml
5.217.6. Tags
-
markets-yekg-data-controller
5.218. YEK-G Organized Market Trading Volume Data Listing Service
POST /v1/markets/yek-g/data/trading-volume
5.218.1. Description
It displays the trade volume of Organized YEK-G market in resource base.
5.218.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.218.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.218.4. Consumes
-
application/json
-
application/xml
5.218.5. Produces
-
application/json
-
application/xml
5.218.6. Tags
-
markets-yekg-data-controller
5.219. YEK-G Weighted Average Price Data Listing Service
POST /v1/markets/yek-g/data/weighted-average-price
5.219.1. Description
It displays resource based weighted average prices of Organized YEK-G Market.
5.219.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.219.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.219.4. Consumes
-
application/json
-
application/xml
5.219.5. Produces
-
application/json
-
application/xml
5.219.6. Tags
-
markets-yekg-data-controller
5.220. YEK-G Withdrowal Quantity Data Listing Service
POST /v1/markets/yek-g/data/withdrawal-quantity
5.220.1. Description
It displays the number of YEK-G documents cancelled due to system malfunction. In the Bilateral Agreement Market, data is published after 15:00 on the following business day, and in the Organized Market, after the post-session period.
5.220.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.220.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.220.4. Consumes
-
application/json
-
application/xml
5.220.5. Produces
-
application/json
-
application/xml
5.220.6. Tags
-
markets-yekg-data-controller
5.221. YEK-G Matching Quantity Data Listing Service
POST /v1/markets/yek-g/data/yekg-matching-quantity
5.221.1. Description
It displays resource based matched YEK-G documents between parties in Organized YEK-G market sessions. Data is published in the Organized YEK-G Market during the session.
5.221.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.221.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.221.4. Consumes
-
application/json
-
application/xml
5.221.5. Produces
-
application/json
-
application/xml
5.221.6. Tags
-
markets-yekg-data-controller
5.222. YEK-G Bilateral Contract Amount Export Service
POST /v1/markets/yek-g/export/bilateral-contract-list
5.222.1. Description
It displays the number of YEK-G documents transferred between accounts on the selected date. In the Bilateral Contract Market, data is published after 15:00 on the following business day. Exports YEK-G Bilateral Contract Amount datas as XLSX, CSV or PDF formats.
5.222.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.222.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.222.4. Consumes
-
application/json
-
application/xml
5.222.5. Produces
-
application/json
-
application/xml
5.222.6. Tags
-
markets-yekg-export-controller
5.223. Cancelation Quantity of YEK-G Documents Export Service
POST /v1/markets/yek-g/export/cancelation-quantity
5.223.1. Description
Indicates the number of cancelation of the YEK-G Document to be used for disclosure on the selected date. The data is published after 15:00 on the following business day of the Organized YEK-G and YEK-G Bilateral Agreements Market. Exports Cancelation Quantity of YEK-G Documents datas as XLSX, CSV or PDF formats.
5.223.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.223.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.223.4. Consumes
-
application/json
-
application/xml
5.223.5. Produces
-
application/json
-
application/xml
5.223.6. Tags
-
markets-yekg-export-controller
5.224. YEK-G Expiry Quantity Export Service
POST /v1/markets/yek-g/export/expiry-quantity
5.224.1. Description
It displays the total number of YEK-G documents cancelled due to the fact that 12 months have passed since the production period. In the Bilateral Agreement Market, data is published after 15:00 on the following business day, and in the Organized Market, after the post-session period. Exports YEK-G Expiry Quantity datas as XLSX, CSV or PDF formats.
5.224.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.224.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.224.4. Consumes
-
application/json
-
application/xml
5.224.5. Produces
-
application/json
-
application/xml
5.224.6. Tags
-
markets-yekg-export-controller
5.225. Issued Quantity of YEK-G Documents Export Service
POST /v1/markets/yek-g/export/exported-document-quantity
5.225.1. Description
It displays the total number of YEK-G documents issued to user accounts on a resource basis on the selected date. The data is published after 15:00 on the business day when the Organized YEK-G and YEK-G Bilateral Contracts Market is followed. Exports Issued Quantity of YEK-G Documents datas as XLSX, CSV or PDF formats.
5.225.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.225.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.225.4. Consumes
-
application/json
-
application/xml
5.225.5. Produces
-
application/json
-
application/xml
5.225.6. Tags
-
markets-yekg-export-controller
5.226. YEK-G Organized Market Bid/Ask Quantity Export Service
POST /v1/markets/yek-g/export/market-bid-ask-quantity
5.226.1. Description
It displays resourse based bid and offer amounts given in Organized YEK-G Market. Exports YEK-G Organized Market Bid/Ask Quantity datas as XLSX, CSV or PDF formats.
5.226.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.226.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.226.4. Consumes
-
application/json
-
application/xml
5.226.5. Produces
-
application/json
-
application/xml
5.226.6. Tags
-
markets-yekg-export-controller
5.227. YEK-G Min. – Max. Matching Price Export Service
POST /v1/markets/yek-g/export/min-max-match-amount-list
5.227.1. Description
It displays the resource based minimum and maximum macthed YEK-G document prices in Organized YEK-G market sessions. Data is published in the Organized YEK-G Market during the session. Exports YEK-G Min. – Max. Matching Price datas as XLSX, CSV or PDF formats.
5.227.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.227.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.227.4. Consumes
-
application/json
-
application/xml
5.227.5. Produces
-
application/json
-
application/xml
5.227.6. Tags
-
markets-yekg-export-controller
5.228. YEK-G Organized Market Trading Volume Export Service
POST /v1/markets/yek-g/export/trading-volume
5.228.1. Description
It displays the trade volume of Organized YEK-G market in resource base. Exports YEK-G Organized Market Trading Volume datas as XLSX, CSV or PDF formats.
5.228.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.228.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.228.4. Consumes
-
application/json
-
application/xml
5.228.5. Produces
-
application/json
-
application/xml
5.228.6. Tags
-
markets-yekg-export-controller
5.229. YEK-G Weighted Average Price Export Service
POST /v1/markets/yek-g/export/weighted-average-price
5.229.1. Description
It displays resource based weighted average prices of Organized YEK-G Market. Exports YEK-G Weighted Average Price datas as XLSX, CSV or PDF formats.
5.229.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.229.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.229.4. Consumes
-
application/json
-
application/xml
5.229.5. Produces
-
application/json
-
application/xml
5.229.6. Tags
-
markets-yekg-export-controller
5.230. YEK-G Withdrowal Quantity Export Service
POST /v1/markets/yek-g/export/withdrawal-quantity
5.230.1. Description
It displays the number of YEK-G documents cancelled due to system malfunction. In the Bilateral Agreement Market, data is published after 15:00 on the following business day, and in the Organized Market, after the post-session period. Exports YEK-G Withdrowal Quantity datas as XLSX, CSV or PDF formats.
5.230.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.230.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.230.4. Consumes
-
application/json
-
application/xml
5.230.5. Produces
-
application/json
-
application/xml
5.230.6. Tags
-
markets-yekg-export-controller
5.231. YEK-G Matching Quantity Export Service
POST /v1/markets/yek-g/export/yekg-matching-quantity
5.231.1. Description
It displays resource based matched YEK-G documents between parties in Organized YEK-G market sessions. Data is published in the Organized YEK-G Market during the session. Exports YEK-G Matching Quantity datas as XLSX, CSV or PDF formats.
5.231.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.231.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.231.4. Consumes
-
application/json
-
application/xml
5.231.5. Produces
-
application/json
-
application/xml
5.231.6. Tags
-
markets-yekg-export-controller
5.232. GET /v1/menu/get-menu-tree
5.232.1. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.232.2. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.232.3. Tags
-
menu-controller
5.233. Page Settings
POST /v1/menu/get-page-settings
5.233.1. Description
Page settings and page info
5.233.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.233.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.233.4. Consumes
-
application/json
-
application/xml
5.233.5. Produces
-
application/json
-
application/xml
5.233.6. Tags
-
menu-controller
5.234. Last update time of page
POST /v1/menu/get-page-update-date
5.234.1. Description
Last update time of page
5.234.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.234.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.234.4. Consumes
-
application/json
-
application/xml
5.234.5. Produces
-
application/json
-
application/xml
5.234.6. Tags
-
menu-controller
5.235. Generation Forecast Data Listing Service
POST /v1/renewables/data/generation-forecast
5.235.1. Description
Forecast generation of facities-under Feed-In Tariff Mechanism-that is reported to National Load Dispatch Center.After the amendment of Regulation on the Certification and Support of Renewable Energy Resources dated 29 April 2016 and numbered 29698 in the Official Gazette, the latest 30 April 2016 data of the generation forecast report can be displayed.
5.235.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.235.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.235.4. Consumes
-
application/json
-
application/xml
5.235.5. Produces
-
application/json
-
application/xml
5.235.6. Tags
-
renewables-data-controller
5.236. Imbalance Cost Data Listing Service
POST /v1/renewables/data/imbalance-cost
5.236.1. Description
The cost of the imbalance amount created by the portfolio within the scope of YEKDEM according to the settlement value.After the amendment of Regulation on the Certification and Support of Renewable Energy Resources dated 29 April 2016 and numbered 29698 in the Official Gazette, the latest 30 April 2016 data can be displayed.
5.236.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.236.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.236.4. Consumes
-
application/json
-
application/xml
5.236.5. Produces
-
application/json
-
application/xml
5.236.6. Tags
-
renewables-data-controller
5.237. Imbalance Quantity Data Listing Service
POST /v1/renewables/data/imbalance-quantity
5.237.1. Description
Imbalance due to injection quantity of the portfolio under renewables support mechanism.After the amendment of Regulation on the Certification and Support of Renewable Energy Resources dated 29 April 2016 and numbered 29698 in the Official Gazette, the latest 30 April 2016 data can be displayed.
5.237.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.237.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.237.4. Consumes
-
application/json
-
application/xml
5.237.5. Produces
-
application/json
-
application/xml
5.237.6. Tags
-
renewables-data-controller
5.238. Licensed Generation Feed-In Cost Data Listing Service
POST /v1/renewables/data/licensed-generation-cost
5.238.1. Description
Hourly aggregate monetary value derived by the multiplication of feed-in energy quantity that is generated by licensed facilities under the renewables support mechanism and feed-in tariff prices. CBRT’s fx buying rate of the date of energy feed-in is taken basis for TL currency conversion.
5.238.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.238.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.238.4. Consumes
-
application/json
-
application/xml
5.238.5. Produces
-
application/json
-
application/xml
5.238.6. Tags
-
renewables-data-controller
5.239. Licensed Power Plant List Service
POST /v1/renewables/data/licensed-powerplant-list
5.239.1. Description
Licensed Power Plant List Service
5.239.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.239.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
< LicensedPowerPlantListResponseDto > array |
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.239.4. Consumes
-
application/json
-
application/xml
5.239.5. Produces
-
application/json
-
application/xml
5.239.6. Tags
-
renewables-data-controller
5.240. RSM Real-Time Generation Data Listing Service
POST /v1/renewables/data/licensed-realtime-generation
5.240.1. Description
The data set regarding hourly electricity generation quantity of licensed power plants within the scope of Renewable Energy Support Mechanism (YEKDEM).
5.240.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.240.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.240.4. Consumes
-
application/json
-
application/xml
5.240.5. Produces
-
application/json
-
application/xml
5.240.6. Tags
-
renewables-data-controller
5.241. Installed Capacity Data Listing Service For Data After YEKDEM Last Date
POST /v1/renewables/data/new-installed-capacity
5.241.1. Description
Total installed capacity of the generation facilities under renewables support mechanism. Licenced installation capacities are registered to EXIST, unlicenced installation capacities are fetched from the distribution corporations.Total installed capacity of the generation facilities under renewables support mechanism.
5.241.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.241.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.241.4. Consumes
-
application/json
-
application/xml
5.241.5. Produces
-
application/json
-
application/xml
5.241.6. Tags
-
renewables-data-controller
5.242. Installed Capacity Data Listing Service For Data at YEKDEM Last Date and the Data Before YEKDEM Last Date
POST /v1/renewables/data/old-installed-capacity
5.242.1. Description
Total installed capacity of the generation facilities under renewables support mechanism. Licenced installation capacities are registered to EXIST, unlicenced installation capacities are fetched from the distribution corporations.Total installed capacity of the generation facilities under renewables support mechanism.
5.242.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.242.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.242.4. Consumes
-
application/json
-
application/xml
5.242.5. Produces
-
application/json
-
application/xml
5.242.6. Tags
-
renewables-data-controller
5.243. Renewables Support Mechanism Portfolio Income Data Listing Service
POST /v1/renewables/data/portfolio-income
5.243.1. Description
It is the hourly total income of the portfolio within the scope of YEKDEM.After the amendment of Regulation on the Certification and Support of Renewable Energy Resources dated 29 April 2016 and numbered 29698 in the Official Gazette, the latest 30 April 2016 data can be displayed.
5.243.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.243.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.243.4. Consumes
-
application/json
-
application/xml
5.243.5. Produces
-
application/json
-
application/xml
5.243.6. Tags
-
renewables-data-controller
5.244. Injection Quantity Data Listing Service
POST /v1/renewables/data/renewable-sm-licensed-injection-quantity
5.244.1. Description
Real time generation: The display of hourly generation values of electricity generation plants on a resource basis. For power plant specific generation data, latest data shown is a day before current date. Requests for the current date’s power plant specific generation data will return a bad request(HTTP 400)
5.244.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.244.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.244.4. Consumes
-
application/json
-
application/xml
5.244.5. Produces
-
application/json
-
application/xml
5.244.6. Tags
-
renewables-data-controller
5.245. Renewables Support Mechanism (RSM) Participant List Data Listing Service
POST /v1/renewables/data/renewables-participant
5.245.1. Description
It is a list of legal entities with a licensed power plant involved in the Renewable energy support mechanism within the relevant year. Since 2020, 'Previous year’s production (Mwh)' has not been published.
5.245.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.245.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.245.4. Consumes
-
application/json
-
application/xml
5.245.5. Produces
-
application/json
-
application/xml
5.245.6. Tags
-
renewables-data-controller
5.246. Renewables Support Mechanism (RSM) Participant Year List
GET /v1/renewables/data/renewables-participant-year-list
5.246.1. Description
Renewables Support Mechanism (RSM) Participant Year List
5.246.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.246.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
< number > array |
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.246.4. Produces
-
application/json
-
application/xml
5.246.5. Tags
-
renewables-data-controller
5.247. Renewables Support Mechanism Income Data Listing Service
POST /v1/renewables/data/renewables-support-mechanism-income
5.247.1. Description
The data set regarding the Renewables Support Mechanism Income.
5.247.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.247.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.247.4. Consumes
-
application/json
-
application/xml
5.247.5. Produces
-
application/json
-
application/xml
5.247.6. Tags
-
renewables-data-controller
5.248. WPP Generation and Forecast Data Listing Service
POST /v1/renewables/data/res-generation-and-forecast
5.248.1. Description
It is the total power production and estimation of WPPs that can be monitored throughout Turkey. The data is obtained from the wind power monitoring and estimation center. Data is updated every 10 minutes. Q5, Q25, Q75, Q95 refer to the prediction intervals. Band prediction intervals are created according to minimum and maximum risk scenarios.It is the total power production and estimation of WPPs that can be monitored throughout Turkey.
5.248.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.248.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.248.4. Consumes
-
application/json
-
application/xml
5.248.5. Produces
-
application/json
-
application/xml
5.248.6. Tags
-
renewables-data-controller
5.249. Spot Order Data Listing Service
POST /v1/renewables/data/spot-order
5.249.1. Description
Offer Quantity given by the National Load Dispatch Center to Day-Ahead Spot Market under Renewables Support Mechanism.After the amendment of Regulation on the Certification and Support of Renewable Energy Resources dated 29 April 2016 and numbered 29698 in the Official Gazette, the latest 30 April 2016 data of the spot order report can be displayed.
5.249.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.249.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.249.4. Consumes
-
application/json
-
application/xml
5.249.5. Produces
-
application/json
-
application/xml
5.249.6. Tags
-
renewables-data-controller
5.250. Total Cost (Licensed & License Exempt) Data Listing Service
POST /v1/renewables/data/total-cost
5.250.1. Description
The data set regarding the total renewable energy amount to be paid to licensed and unlicensed power plants within the scope of Renewable Energy Support Mechanism.
5.250.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.250.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.250.4. Consumes
-
application/json
-
application/xml
5.250.5. Produces
-
application/json
-
application/xml
5.250.6. Tags
-
renewables-data-controller
5.251. Unit Cost Data Listing Service
POST /v1/renewables/data/unit-cost
5.251.1. Description
It is the cost of Renewable Support Mechanism calculated per unit of energy supplied.Renewable Support Mechanism unit cost is published in versions for the relevant months.If Renewable Support Mechanism income is more than the total amount of Renewable Energy Resources in a billing period, the calculation is made in accordance with the fourth paragraph of Article 13 of the Regulation on Certification and Support of Renewable Energy Resources.
5.251.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.251.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.251.4. Consumes
-
application/json
-
application/xml
5.251.5. Produces
-
application/json
-
application/xml
5.251.6. Tags
-
renewables-data-controller
5.252. License Exempt Generation Feed-In Amount Data Listing Service
POST /v1/renewables/data/unlicensed-generation-amount
5.252.1. Description
These are the unlicensed data values of unlicensed power plants within the scope of YEKDEM for hourly reconciliation on a resource basis.Unlicensed power plants within the scope of YEKDEM.
5.252.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.252.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.252.4. Consumes
-
application/json
-
application/xml
5.252.5. Produces
-
application/json
-
application/xml
5.252.6. Tags
-
renewables-data-controller
5.253. License Exempt Generation Feed-In Cost Data Listing Service
POST /v1/renewables/data/unlicensed-generation-cost
5.253.1. Description
It represents the RES fee (TL) to be paid for owning unlicensed generation plants within the scope of YEKDEM for the relevant invoice period.
5.253.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.253.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.253.4. Consumes
-
application/json
-
application/xml
5.253.5. Produces
-
application/json
-
application/xml
5.253.6. Tags
-
renewables-data-controller
5.254. Generation Forecast Export Service
POST /v1/renewables/export/generation-forecast
5.254.1. Description
Forecast generation of facities-under Feed-In Tariff Mechanism-that is reported to National Load Dispatch Center.After the amendment of Regulation on the Certification and Support of Renewable Energy Resources dated 29 April 2016 and numbered 29698 in the Official Gazette, the latest 30 April 2016 data of the generation forecast report can be displayed.Exports Generation Forecast datas as XLSX, CSV or PDF formats.
5.254.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.254.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.254.4. Consumes
-
application/json
-
application/xml
5.254.5. Produces
-
application/json
-
application/xml
5.254.6. Tags
-
renewables-export-controller
5.255. Imbalance Cost Export Service
POST /v1/renewables/export/imbalance-cost
5.255.1. Description
The cost of the imbalance amount created by the portfolio within the scope of YEKDEM according to the settlement value.After the amendment of Regulation on the Certification and Support of Renewable Energy Resources dated 29 April 2016 and numbered 29698 in the Official Gazette, the latest 30 April 2016 data can be displayed.Exports Imbalance Cost datas as XLSX, CSV or PDF formats.
5.255.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.255.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.255.4. Consumes
-
application/json
-
application/xml
5.255.5. Produces
-
application/json
-
application/xml
5.255.6. Tags
-
renewables-export-controller
5.256. Imbalance Quantity Export Service
POST /v1/renewables/export/imbalance-quantity
5.256.1. Description
Imbalance due to injection quantity of the portfolio under renewables support mechanism.After the amendment of Regulation on the Certification and Support of Renewable Energy Resources dated 29 April 2016 and numbered 29698 in the Official Gazette, the latest 30 April 2016 data can be displayed.Exports Imbalance Quantity datas as XLSX, CSV or PDF formats.
5.256.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.256.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.256.4. Consumes
-
application/json
-
application/xml
5.256.5. Produces
-
application/json
-
application/xml
5.256.6. Tags
-
renewables-export-controller
5.257. Licensed Generation Feed-In Cost Export Service
POST /v1/renewables/export/licensed-generation-cost
5.257.1. Description
Hourly aggregate monetary value derived by the multiplication of feed-in energy quantity that is generated by licensed facilities under the renewables support mechanism and feed-in tariff prices. CBRT’s fx buying rate of the date of energy feed-in is taken basis for TL currency conversion. https://www.epias.com.tr/wp-content/uploads/2023/10/DPgcwzhsEjfRWWcEzsKx.png Exports Licensed Generation Feed-In Cost datas as XLSX, CSV or PDF formats.
5.257.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.257.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.257.4. Consumes
-
application/json
-
application/xml
5.257.5. Produces
-
application/json
-
application/xml
5.257.6. Tags
-
renewables-export-controller
5.258. RSM Real-Time Generation Export Service
POST /v1/renewables/export/licensed-realtime-generation
5.258.1. Description
The data set regarding hourly electricity generation quantity of licensed power plants within the scope of Renewable Energy Support Mechanism (YEKDEM).Exports Real-Time Generation datas as XLSX, CSV or PDF formats.
5.258.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.258.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.258.4. Consumes
-
application/json
-
application/xml
5.258.5. Produces
-
application/json
-
application/xml
5.258.6. Tags
-
renewables-export-controller
5.259. Installed Capacity Data Export Service For Data After YEKDEM Last Date
POST /v1/renewables/export/new-installed-capacity
5.259.1. Description
Total installed capacity of the generation facilities under renewables support mechanism. Licenced installation capacities are registered to EXIST, unlicenced installation capacities are fetched from the distribution corporations.Total installed capacity of the generation facilities under renewables support mechanism.Exports Installed Capacity datas as XLSX, CSV or PDF formats.
5.259.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.259.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.259.4. Consumes
-
application/json
-
application/xml
5.259.5. Produces
-
application/json
-
application/xml
5.259.6. Tags
-
renewables-export-controller
5.260. Installed Capacity Data Export Service For Data at YEKDEM Last Date and the Data Before YEKDEM Last Date
POST /v1/renewables/export/old-installed-capacity
5.260.1. Description
Total installed capacity of the generation facilities under renewables support mechanism. Licenced installation capacities are registered to EXIST, unlicenced installation capacities are fetched from the distribution corporations.Total installed capacity of the generation facilities under renewables support mechanism.Exports Installed Capacity datas as XLSX, CSV or PDF formats.
5.260.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.260.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.260.4. Consumes
-
application/json
-
application/xml
5.260.5. Produces
-
application/json
-
application/xml
5.260.6. Tags
-
renewables-export-controller
5.261. Renewables Support Mechanism Portfolio Income Export Service
POST /v1/renewables/export/portfolio-income
5.261.1. Description
It is the hourly total income of the portfolio within the scope of YEKDEM.After the amendment of Regulation on the Certification and Support of Renewable Energy Resources dated 29 April 2016 and numbered 29698 in the Official Gazette, the latest 30 April 2016 data can be displayed.Exports Renewables Support Mechanism Portfolio Income datas as XLSX, CSV or PDF formats.
5.261.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.261.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.261.4. Consumes
-
application/json
-
application/xml
5.261.5. Produces
-
application/json
-
application/xml
5.261.6. Tags
-
renewables-export-controller
5.262. Injection Quantity Export Service
POST /v1/renewables/export/renewable-sm-licensed-injection-quantity
5.262.1. Description
The data set regarding hourly electricity injection quantity based on settlement of licensed power plants within the scope of Renewable Energy Support Mechanism (YEKDEM).Exports Injection Quantity datas as XLSX, CSV or PDF formats.
5.262.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.262.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.262.4. Consumes
-
application/json
-
application/xml
5.262.5. Produces
-
application/json
-
application/xml
5.262.6. Tags
-
renewables-export-controller
5.263. Renewables Support Mechanism (RSM) Participant List Export Service
POST /v1/renewables/export/renewables-participant
5.263.1. Description
It is a list of legal entities with a licensed power plant involved in the Renewable energy support mechanism within the relevant year. Since 2020, Previous years production (MWh) has not been published.Exports Renewables Support Mechanism (RSM) Participant List datas as XLSX, CSV or PDF formats.
5.263.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.263.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.263.4. Consumes
-
application/json
-
application/xml
5.263.5. Produces
-
application/json
-
application/xml
5.263.6. Tags
-
renewables-export-controller
5.264. Renewables Support Mechanism Income Export Service
POST /v1/renewables/export/renewables-support-mechanism-income
5.264.1. Description
The data set regarding the Renewables Support Mechanism Income.Exports Renewables Support Mechanism Income datas as XLSX, CSV or PDF formats.
5.264.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.264.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.264.4. Consumes
-
application/json
-
application/xml
5.264.5. Produces
-
application/json
-
application/xml
5.264.6. Tags
-
renewables-export-controller
5.265. WPP Generation and Forecast Export Service
POST /v1/renewables/export/res-generation-and-forecast
5.265.1. Description
It is the total power production and estimation of WPPs that can be monitored throughout Turkey. The data is obtained from the wind power monitoring and estimation center. Data is updated every 10 minutes. Q5, Q25, Q75, Q95 refer to the prediction intervals. Band prediction intervals are created according to minimum and maximum risk scenarios.It is the total power production and estimation of WPPs that can be monitored throughout Turkey.Exports WPP Generation and Forecast datas as XLSX, CSV or PDF formats.
5.265.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.265.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.265.4. Consumes
-
application/json
-
application/xml
5.265.5. Produces
-
application/json
-
application/xml
5.265.6. Tags
-
renewables-export-controller
5.266. Spot Order Export Service
POST /v1/renewables/export/spot-order
5.266.1. Description
Offer Quantity given by the National Load Dispatch Center to Day-Ahead Spot Market under Renewables Support Mechanism.After the amendment of Regulation on the Certification and Support of Renewable Energy Resources dated 29 April 2016 and numbered 29698 in the Official Gazette, the latest 30 April 2016 data of the spot order report can be displayed.Exports Spot Order datas as XLSX, CSV or PDF formats.
5.266.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.266.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.266.4. Consumes
-
application/json
-
application/xml
5.266.5. Produces
-
application/json
-
application/xml
5.266.6. Tags
-
renewables-export-controller
5.267. Total Cost (Licensed & License Exempt) Export Service
POST /v1/renewables/export/total-cost
5.267.1. Description
The data set regarding the total renewable energy amount to be paid to licensed and unlicensed power plants within the scope of Renewable Energy Support Mechanism.Exports Total Cost (Licensed & License Exempt) datas as XLSX, CSV or PDF formats.
5.267.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.267.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.267.4. Consumes
-
application/json
-
application/xml
5.267.5. Produces
-
application/json
-
application/xml
5.267.6. Tags
-
renewables-export-controller
5.268. Unit Cost Export Service
POST /v1/renewables/export/unit-cost
5.268.1. Description
It is the cost of Renewable Support Mechanism calculated per unit of energy supplied. Renewable Support Mechanism unit cost is published in versions for the relevant months. If Renewable Support Mechanism income is more than the total amount of Renewable Energy Resources in a billing period, the calculation is made in accordance with the forth paragraph of Article 13 of the Regulation on Certification and Support of Renewable Energy Resources.Exports Unit Cost datas as XLSX, CSV or PDF formats.
5.268.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.268.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.268.4. Consumes
-
application/json
-
application/xml
5.268.5. Produces
-
application/json
-
application/xml
5.268.6. Tags
-
renewables-export-controller
5.269. License Exempt Generation Feed-In Amount Export Service
POST /v1/renewables/export/unlicensed-generation-amount
5.269.1. Description
These are the unlicensed data values of unlicensed power plants within the scope of YEKDEM for hourly reconciliation on a resource basis.Unlicensed power plants within the scope of YEKDEM.Exports License Exempt Generation Feed-In Amount datas as XLSX, CSV or PDF formats.
5.269.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.269.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.269.4. Consumes
-
application/json
-
application/xml
5.269.5. Produces
-
application/json
-
application/xml
5.269.6. Tags
-
renewables-export-controller
5.270. License Exempt Generation Feed-In Cost Export Service
POST /v1/renewables/export/unlicensed-generation-cost
5.270.1. Description
It represents the RES fee (TL) to be paid for owning unlicensed generation plants within the scope of YEKDEM for the relevant invoice period.Exports License Exempt Generation Feed-In Cost datas as XLSX, CSV or PDF formats.
5.270.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.270.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.270.4. Consumes
-
application/json
-
application/xml
5.270.5. Produces
-
application/json
-
application/xml
5.270.6. Tags
-
renewables-export-controller
5.271. Interconnection Line - Capacity Requests Listing Service
POST /v1/transmission/data/capacity-demand
5.271.1. Description
Shows the requests for capacity auctions and allocated capacities. Shows the requests for capacity auctions and allocated capacities.
5.271.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.271.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.271.4. Consumes
-
application/json
-
application/xml
5.271.5. Produces
-
application/json
-
application/xml
5.271.6. Tags
-
transmission-data-controller
5.272. Capacity demand direction service
GET /v1/transmission/data/capacity-demand-direction
5.272.1. Description
Capacity demand direction service
5.272.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.272.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
< string > array |
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.272.4. Produces
-
application/json
-
application/xml
5.272.5. Tags
-
transmission-data-controller
5.273. Congestion Cost Data Listing Service
POST /v1/transmission/data/congestion-cost
5.273.1. Description
The data set regarding the total congestion cost of up and down regulation instructions with code 1. Formula: Congestion Cost = (Up Regulation Instruction Quantity)[URI Price - Chosen Price] + (Down Regulation Instruction Quantity)[Chosen Price - DRI Price].
5.273.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.273.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.273.4. Consumes
-
application/json
-
application/xml
5.273.5. Produces
-
application/json
-
application/xml
5.273.6. Tags
-
transmission-data-controller
5.274. ENTSO-E (W) Codes Data Listing Service
POST /v1/transmission/data/entso-w-organization
5.274.1. Description
The EIC code of type W is used to identify objects to be used for production, consumption or storage of energy.
5.274.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.274.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.274.4. Consumes
-
application/json
-
application/xml
5.274.5. Produces
-
application/json
-
application/xml
5.274.6. Tags
-
transmission-data-controller
5.275. ENTSO-E (W) UEVCB Listing Service
POST /v1/transmission/data/entso-w-uevcb
5.275.1. Description
ENTSO-E (W) UEVCB Listing Service
5.275.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.275.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.275.4. Consumes
-
application/json
-
application/xml
5.275.5. Produces
-
application/json
-
application/xml
5.275.6. Tags
-
transmission-data-controller
5.276. Interconnection Failure and Maintenance Notices Data Listing Service
POST /v1/transmission/data/international-line-events
5.276.1. Description
This is the page for information on international lines obtained from TCAT.
5.276.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.276.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.276.4. Consumes
-
application/json
-
application/xml
5.276.5. Produces
-
application/json
-
application/xml
5.276.6. Tags
-
transmission-data-controller
5.277. Transmission Loss Factor Data Listing Service
POST /v1/transmission/data/iskk-list
5.277.1. Description
The data set regarding the ratio of difference between injection to the system and withdrawal from the system, to injection to the system.
5.277.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.277.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.277.4. Consumes
-
application/json
-
application/xml
5.277.5. Produces
-
application/json
-
application/xml
5.277.6. Tags
-
transmission-data-controller
5.278. Interconnection Line Capacities Listing Service
POST /v1/transmission/data/line-capacities
5.278.1. Description
Total Capacity and Available Capacity values are shown on the page. Total Capacity and Available Capacity values are shown on the page.
5.278.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.278.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.278.4. Consumes
-
application/json
-
application/xml
5.278.5. Produces
-
application/json
-
application/xml
5.278.6. Tags
-
transmission-data-controller
5.279. Line Capacity Direction List service
GET /v1/transmission/data/line-capacities-direction
5.279.1. Description
Line Capacity Direction List service
5.279.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.279.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
< string > array |
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.279.4. Produces
-
application/json
-
application/xml
5.279.5. Tags
-
transmission-data-controller
5.280. Nomine Capacity Listing Service
POST /v1/transmission/data/nominal-capacity
5.280.1. Description
Nomine Capacity values show the bilateral agreements made for import (sales quantities) and exports (purchased quantities).
5.280.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.280.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.280.4. Consumes
-
application/json
-
application/xml
5.280.5. Produces
-
application/json
-
application/xml
5.280.6. Tags
-
transmission-data-controller
5.281. ENTSO-E (X) Codes Data Listing Service
POST /v1/transmission/data/organization-list
5.281.1. Description
It is the Energy Identification Code defined by the European Network of Electricity Transmission System Operators to the organizations in the market in a format in accordance with European standards.
5.281.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.281.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.281.4. Consumes
-
application/json
-
application/xml
5.281.5. Produces
-
application/json
-
application/xml
5.281.6. Tags
-
transmission-data-controller
5.282. Monthly Forecasts for Interconnection Capacity Listing Service
POST /v1/transmission/data/tcat-pre-month-forecast
5.282.1. Description
The data set regarding the pre-month forecasts of Net Transfer Capacity, Available Capacity and Allocated Capacity values according to transfer directions.
5.282.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.282.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.282.4. Consumes
-
application/json
-
application/xml
5.282.5. Produces
-
application/json
-
application/xml
5.282.6. Tags
-
transmission-data-controller
5.283. Yearly Forecasts for Interconnection Capacity Listing Service
POST /v1/transmission/data/tcat-pre-year-forecast
5.283.1. Description
The data set regarding the pre-year forecasts of Net Transfer Capacity, Available Capacity and Allocated Capacity values according to transfer directions.
5.283.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.283.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.283.4. Consumes
-
application/json
-
application/xml
5.283.5. Produces
-
application/json
-
application/xml
5.283.6. Tags
-
transmission-data-controller
5.284. Monthly Zero Balance Adjustment Data Listing Service
POST /v1/transmission/data/zero-balance
5.284.1. Description
The data set regarding montly amounts of zero balance adjustment and its components. These data are published as based on settlement. Up Regulation Instruction : URI, Down Regulation Instruction: DRI, Non-Fullfilled Up Regulation Instruction Amount: NFUTIA, Non-Fullfilled Down Regulation Instruction Amount: NFDTIA, Manual Retroactive Adjustment, Final Production Plan Deviation Amount: FPPDA.
5.284.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.284.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.284.4. Consumes
-
application/json
-
application/xml
5.284.5. Produces
-
application/json
-
application/xml
5.284.6. Tags
-
transmission-data-controller
5.285. Interconnection Line - Capacity Requests Export Service
POST /v1/transmission/export/capacity-demand-export
5.285.1. Description
Total Capacity and Available Capacity values are shown on the page. Total Capacity and Available Capacity values are shown on the page. Exports Interconnection Line - Capacity Requests datas as XLSX, CSV or PDF formats.
5.285.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.285.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.285.4. Consumes
-
application/json
-
application/xml
5.285.5. Produces
-
application/json
-
application/xml
5.285.6. Tags
-
transmission-export-controller
5.286. Congestion Cost Export Service
POST /v1/transmission/export/congestion-cost
5.286.1. Description
The data set regarding the total congestion cost of up and down regulation instructions with code 1. Formula: Congestion Cost = (Up Regulation Instruction Quantity)[URI Price - Chosen Price] + (Down Regulation Instruction Quantity)[Chosen Price - DRI Price]. Exports Congestion Cost datas as XLSX, CSV or PDF formats.
5.286.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/electricity-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.286.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.286.4. Consumes
-
application/json
-
application/xml
5.286.5. Produces
-
application/json
-
application/xml
5.286.6. Tags
-
transmission-export-controller
5.287. ENTSO-E (W) Codes Export Service
POST /v1/transmission/export/entso-w-organization
5.287.1. Description
The EIC code of type W is used to identify objects to be used for production, consumption or storage of energy. Exports ENTSO-E (W) Codes datas as XLSX, CSV or PDF formats.
5.287.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.287.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.287.4. Consumes
-
application/json
-
application/xml
5.287.5. Produces
-
application/json
-
application/xml
5.287.6. Tags
-
transmission-export-controller
5.288. ENTSO-E (W) UEVCB List Export Service
POST /v1/transmission/export/entso-w-uevcb
5.288.1. Description
ENTSO-E (W) UEVCB List Export Service
5.288.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.288.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.288.4. Consumes
-
application/json
-
application/xml
5.288.5. Produces
-
application/json
-
application/xml
5.288.6. Tags
-
transmission-export-controller
5.289. Interconnection Failure and Maintenance Notices Export Service
POST /v1/transmission/export/international-line-events
5.289.1. Description
This is the page for information on international lines obtained from TCAT. Exports Interconnection Failure and Maintenance Notices datas as XLSX, CSV or PDF formats.
5.289.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.289.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.289.4. Consumes
-
application/json
-
application/xml
5.289.5. Produces
-
application/json
-
application/xml
5.289.6. Tags
-
transmission-export-controller
5.290. Transmission Loss Factor Export Service
POST /v1/transmission/export/iskk-list
5.290.1. Description
The data set regarding the ratio of difference between injection to the system and withdrawal from the system, to injection to the system. Exports Transmission Loss Factor datas as XLSX, CSV or PDF formats.
5.290.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.290.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.290.4. Consumes
-
application/json
-
application/xml
5.290.5. Produces
-
application/json
-
application/xml
5.290.6. Tags
-
transmission-export-controller
5.291. Interconnection Line Capacities Export Service
POST /v1/transmission/export/line-capacities
5.291.1. Description
Total Capacity and Available Capacity values are shown on the page. Total Capacity and Available Capacity values are shown on the page. Exports Interconnection Line Capacities datas as XLSX, CSV or PDF formats.
5.291.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.291.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.291.4. Consumes
-
application/json
-
application/xml
5.291.5. Produces
-
application/json
-
application/xml
5.291.6. Tags
-
transmission-export-controller
5.292. Nomine Capacity Export Service
POST /v1/transmission/export/nominal-capacity
5.292.1. Description
Nomine Capacity values show the bilateral agreements made for import (sales quantities) and exports (purchased quantities). Exports Nomine Capacity datas as XLSX, CSV or PDF formats.
5.292.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.292.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.292.4. Consumes
-
application/json
-
application/xml
5.292.5. Produces
-
application/json
-
application/xml
5.292.6. Tags
-
transmission-export-controller
5.293. ENTSO-E (X) Codes Export Service
POST /v1/transmission/export/organization-list
5.293.1. Description
It is the Energy Identification Code defined by the European Network of Electricity Transmission System Operators to the organizations in the market in a format in accordance with European standards. Exports ENTSO-E (X) Codes datas as XLSX, CSV or PDF formats.
5.293.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.293.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.293.4. Consumes
-
application/json
-
application/xml
5.293.5. Produces
-
application/json
-
application/xml
5.293.6. Tags
-
transmission-export-controller
5.294. Monthly Forecasts for Interconnection Capacity Export Service
POST /v1/transmission/export/tcat-pre-month-forecast
5.294.1. Description
The data set regarding the pre-month forecasts of Net Transfer Capacity, Available Capacity and Allocated Capacity values according to transfer directions. Exports Monthly Forecasts for Interconnection Capacity datas as XLSX, CSV or PDF formats.
5.294.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.294.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.294.4. Consumes
-
application/json
-
application/xml
5.294.5. Produces
-
application/json
-
application/xml
5.294.6. Tags
-
transmission-export-controller
5.295. Yearly Forecasts for Interconnection Capacity Export Service
POST /v1/transmission/export/tcat-pre-year-forecast
5.295.1. Description
The data set regarding the pre-year forecasts of Net Transfer Capacity, Available Capacity and Allocated Capacity values according to transfer directions. Exports Yearly Forecasts for Interconnection Capacity datas as XLSX, CSV or PDF formats.
5.295.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.295.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.295.4. Consumes
-
application/json
-
application/xml
5.295.5. Produces
-
application/json
-
application/xml
5.295.6. Tags
-
transmission-export-controller
5.296. Monthly Zero Balance Adjustment Export Service
POST /v1/transmission/export/zero-balance
5.296.1. Description
The data set regarding montly amounts of zero balance adjustment and its components. These data are published as based on settlement. Up Regulation Instruction : URI, Down Regulation Instruction: DRI, Non-Fullfilled Up Regulation Instruction Amount: NFUTIA, Non-Fullfilled Down Regulation Instruction Amount: NFDTIA, Manual Retroactive Adjustment, Final Production Plan Deviation Amount: FPPDA. Exports Monthly Zero Balance Adjustment datas as XLSX, CSV or PDF formats.
5.296.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.296.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.296.4. Consumes
-
application/json
-
application/xml
5.296.5. Produces
-
application/json
-
application/xml
5.296.6. Tags
-
transmission-export-controller
6. Definitions
6.1. ActiveFullnessDataDto
Name | Description | Schema |
---|---|---|
activeFullnessAmount |
Active Fullness (%) |
number |
basin |
Direction |
string |
dam |
Direction |
string |
damId |
Dam Id |
integer (int64) |
date |
Date value formatted like |
string (date-time) |
id |
Id |
number |
6.2. ActiveFullnessExportRequestDto
Name | Description | Schema |
---|---|---|
basinName |
Date value formatted like |
string |
damName |
Date value formatted like |
string |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
6.3. ActiveFullnessRequestDto
Name | Description | Schema |
---|---|---|
basinName |
Date value formatted like |
string |
damName |
Date value formatted like |
string |
page |
Paging Details |
6.4. ActiveFullnessResponseDto
Name | Schema |
---|---|
items |
< ActiveFullnessDataDto > array |
page |
6.5. ActiveVolumeDataDto
Name | Description | Schema |
---|---|---|
activeVolume |
Active Volume(HM3) |
number |
basinName |
Basin |
string |
damId |
Dam Id |
integer (int64) |
damName |
Dam |
string |
date |
Date value formatted like |
string (date-time) |
id |
Id |
number |
6.6. ActiveVolumeExportRequestDto
Name | Description | Schema |
---|---|---|
basinName |
Basin |
string |
damName |
Dam |
string |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
6.7. ActiveVolumeRequestDto
Name | Description | Schema |
---|---|---|
basinName |
Basin |
string |
damName |
Dam |
string |
page |
Paging Details |
6.8. ActiveVolumeWrappedResponse
Name | Schema |
---|---|
items |
< ActiveVolumeDataDto > array |
page |
6.9. AmountOfBilateralContractsDataDto
Name | Description | Schema |
---|---|---|
contractAmount |
Amount of Bilateral Contracts (TWh) |
number |
date |
Date value formatted like |
string (date-time) |
6.10. AmountOfBilateralContractsExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.11. AmountOfBilateralContractsRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.12. AmountOfBilateralContractsResponseDto
Name | Schema |
---|---|
items |
< AmountOfBilateralContractsDataDto > array |
latestUpdateDate |
string (date-time) |
page |
|
statistics |
6.13. AmountOfBilateralContractsStatisticsDto
Name | Schema |
---|---|
totalContractAmount |
number |
6.14. AmountOfBlockBuyingDataDto
Name | Description | Schema |
---|---|---|
amountOfPurchasingTowardsMatchedBlock |
Matched Amount Of Block Buying Offer Quantity (Mwh) |
number |
amountOfPurchasingTowardsUnMatchedBlock |
Unmatched Amount Of Block Buying Offer Quantity (Mwh) |
number |
date |
Date value formatted like |
string (date-time) |
time |
Hour Data. |
string |
6.15. AmountOfBlockBuyingExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.16. AmountOfBlockBuyingRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.17. AmountOfBlockBuyingResponseDto
Name | Schema |
---|---|
items |
< AmountOfBlockBuyingDataDto > array |
page |
|
statistics |
6.18. AmountOfBlockBuyingStatisticsDto
Name | Schema |
---|---|
amountOfPurchasingTowardsMatchedBlockTotals |
number |
amountOfPurchasingTowardsUnMatchedBlockTotals |
number |
6.19. AmountOfBlockSellingDataDto
Name | Description | Schema |
---|---|---|
amountOfSalesTowardsMatchedBlock |
Matched Amount Of Block Selling Offer Quantity (Mwh) |
number |
amountOfSalesTowardsUnMatchedBlock |
UnMatched Amount Of Block Selling Offer Quantity (Mwh) |
number |
date |
Date value formatted like |
string (date-time) |
time |
Hour Data. |
string |
6.20. AmountOfBlockSellingExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.21. AmountOfBlockSellingRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.22. AmountOfBlockSellingResponseDto
Name | Schema |
---|---|
items |
< AmountOfBlockSellingDataDto > array |
page |
|
statistics |
6.23. AmountOfBlockSellingStatisticsDto
Name | Schema |
---|---|
amountOfSalesTowardsMatchedBlockTotals |
number |
amountOfSalesTowardsUnMatchedBlockTotals |
number |
6.24. BaseDTO
Type : object
6.25. BidOfferQuantitiesDataDto
Name | Description | Schema |
---|---|---|
bidQuantity |
Bid Quantity (MWh) |
number |
contractName |
Contrat Name; |
string |
contractType |
Contrat Type; |
string |
offerQuantity |
Offer Quantity (MWh) |
number |
6.26. BidOfferQuantitiesExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.27. BidOfferQuantitiesRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.28. BidOfferQuantitiesResponseDto
Name | Schema |
---|---|
items |
< BidOfferQuantitiesDataDto > array |
page |
6.29. BilateralContractAmountDataDto
Name | Description | Schema |
---|---|---|
biomass |
Biomass (MWh) |
number |
date |
Date value formatted like |
string (date-time) |
geothermal |
Geothermal (MWh) |
number |
hydro |
Hydro (MWh) |
number |
sun |
Solar (MWh) |
number |
total |
Total (MWh) |
number |
wind |
Wind (MWh) |
number |
6.30. BilateralContractAmountExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.31. BilateralContractAmountRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.32. BilateralContractAmountResponseDto
Name | Schema |
---|---|
items |
< BilateralContractAmountDataDto > array |
page |
|
statistics |
6.33. BilateralContractAmountStatisticsDto
Name | Schema |
---|---|
biomassTotal |
number |
geothermalTotal |
number |
hydroTotal |
number |
sunTotal |
number |
totalTotal |
number |
windTotal |
number |
6.34. BilateralContractBuyDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
quantity |
Quantity(MWh) |
number |
6.35. BilateralContractBuyExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
organizationId |
Organization id value. For listing every organization, see: |
integer (int64) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.36. BilateralContractBuyRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
organizationId |
Organization id value. For listing every organization, see: |
integer (int64) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.37. BilateralContractBuyResponseDto
Name | Schema |
---|---|
items |
< BilateralContractBuyDataDto > array |
page |
|
statistics |
6.38. BilateralContractBuyStatisticsDto
Name | Schema |
---|---|
quantityTotals |
number |
6.39. BilateralContractSellDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
quantity |
Quantity(MWh) |
number |
6.40. BilateralContractSellExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
organizationId |
Organization id value. For listing every organization, see: |
integer (int64) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.41. BilateralContractSellRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
organizationId |
Organization id value. For listing every organization, see: |
integer (int64) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.42. BilateralContractSellResponseDto
Name | Schema |
---|---|
items |
< BilateralContractSellDataDto > array |
page |
|
statistics |
6.43. BilateralContractSellStatisticsDto
Name | Schema |
---|---|
quantityTotals |
number |
6.44. BooleanDTO
Name | Schema |
---|---|
completed |
boolean |
6.45. CapacityDemandDataDto
Name | Description | Schema |
---|---|---|
allocatedCapacity |
Total Capacity(MW) |
number |
auctionCode |
Total Capacity(MW) |
string |
bidCount |
Total Capacity(MW) |
number |
clearencePrice |
Total Capacity(MW) |
number |
date |
Transfer Date |
string (date-time) |
direction |
Direction |
string |
participantCount |
Total Capacity(MW) |
number |
requestedCapacity |
Total Capacity(MW) |
number |
time |
Date value formatted like |
string (date-time) |
winnerCount |
Total Capacity(MW) |
number |
6.46. CapacityDemandExportRequestDto
Name | Description | Schema |
---|---|---|
direction |
Date value formatted like |
string |
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.47. CapacityDemandRequestDto
Name | Description | Schema |
---|---|---|
direction |
Date value formatted like |
string |
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.48. CapacityDemandResponseDto
Name | Schema |
---|---|
items |
< CapacityDemandDataDto > array |
page |
6.49. ClearingQuantityDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
matchedBids |
Matched Bids |
number |
matchedOffers |
Matched Offers |
number |
6.50. ClearingQuantityExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
organizationId |
Organization id value. For listing every organization, see: |
integer (int64) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.51. ClearingQuantityOrgListRequestDto
Name | Description | Schema |
---|---|---|
period |
Date value formatted like |
string (date-time) |
6.52. ClearingQuantityOrgListResponseDto
Name | Schema |
---|---|
items |
< ClearingQuantityOrganizationDataDto > array |
6.53. ClearingQuantityOrganizationDataDto
Name | Schema |
---|---|
eic |
string |
organizationId |
integer (int64) |
organizationName |
string |
organizationStatus |
string |
shortName |
string |
6.54. ClearingQuantityRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
organizationId |
Organization id value. For listing every organization, see: |
integer (int64) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.55. ClearingQuantityResponseDto
Name | Schema |
---|---|
items |
< ClearingQuantityDataDto > array |
page |
|
statistics |
6.56. ClearingQuantityStatisticsDto
Name | Schema |
---|---|
matchedBidsTotal |
number |
matchedOfferTotal |
number |
6.57. CongestionCostDataDto
Name | Description | Schema |
---|---|---|
cityName |
City |
string |
congestionCost |
Congestion Cost |
number |
6.58. CongestionCostExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
orderType |
for Congestion Cost order type field that can have the following values: UP_REGULATION, DOWN_REGULATION, BOTH_REGULATIONS |
enum (UP_REGULATION, DOWN_REGULATION, BOTH_REGULATIONS) |
page |
Paging Details |
|
priceType |
Price Type |
enum (SMP, MCP) |
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.59. CongestionCostRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
orderType |
for Congestion Cost order type field that can have the following values: UP_REGULATION, DOWN_REGULATION, BOTH_REGULATIONS |
enum (UP_REGULATION, DOWN_REGULATION, BOTH_REGULATIONS) |
page |
Paging Details |
|
priceType |
Price Type |
enum (SMP, MCP) |
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.60. CongestionCostResponseDto
Name | Schema |
---|---|
items |
< CongestionCostDataDto > array |
page |
6.61. ConsumerQuantityDataDto
Name | Description | Schema |
---|---|---|
consumerSector |
Profile Groups |
string |
province |
City |
string |
serbestTuketiciSayisi |
Number of Eligible Consumer |
integer (int64) |
stHakkiBulunmayanAboneSayisi |
Number of Consumers that is not eligible |
integer (int64) |
stHakkiKullanmayanAboneSayisi |
Number of Consumers Not Using Eligible Consumer Rights |
integer (int64) |
6.62. ConsumerQuantityExportRequestDto
Name | Description | Schema |
---|---|---|
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
profileGroupId |
Profile group Id bilgisi(see: Profile Group Listing Service) |
integer (int32) |
provinceId |
Province Id(see: Province Listing Service) |
integer (int32) |
6.63. ConsumerQuantityRequestDto
Name | Description | Schema |
---|---|---|
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
profileGroupId |
Profile group Id bilgisi(see: Profile Group Listing Service) |
integer (int32) |
provinceId |
Province Id(see: Province Listing Service) |
integer (int32) |
6.64. ConsumerQuantityResponseDto
Name | Schema |
---|---|
items |
< ConsumerQuantityDataDto > array |
page |
6.65. ConsumerSectorResponseDto
Name | Schema |
---|---|
consumerSectorEn |
string |
consumerSectorTr |
string |
id |
integer (int64) |
6.66. ConsumptionQuantityDataDto
Name | Description | Schema |
---|---|---|
consumerSector |
Profile Groups |
string |
province |
City |
string |
serbestTuketiciTuketimMiktari |
Consumption Quantity of Eligible Consumer |
integer (int64) |
stHakkiBulunmayanTuketiciTuketimMiktari |
Consumption Quantity of Consumers that is not eligible |
integer (int64) |
stHakkiniKullanmayanTuketiciTuketimMiktari |
Consumption Quantity of Consumers Not Using Eligible Consumer Rights |
integer (int64) |
6.67. ConsumptionQuantityExportRequestDto
Name | Description | Schema |
---|---|---|
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
profileGroupId |
Profile group Id bilgisi(see: Profile Group Listing Service) |
integer (int32) |
provinceId |
Province Id(see: Province Listing Service) |
integer (int32) |
6.68. ConsumptionQuantityRequestDto
Name | Description | Schema |
---|---|---|
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
profileGroupId |
Profile group Id bilgisi(see: Profile Group Listing Service) |
integer (int32) |
provinceId |
Province Id(see: Province Listing Service) |
integer (int32) |
6.69. ConsumptionQuantityResponseDto
Name | Schema |
---|---|
items |
< ConsumptionQuantityDataDto > array |
page |
6.70. ContractPriceSummaryDataDto
Name | Description | Schema |
---|---|---|
contractName |
Contract Name |
string |
date |
Date value formatted like |
string (date-time) |
dipPrice |
DIP (TL/MWh) |
number |
firstMatchingPrice |
First Matching Price (TL/MWh) |
number |
latestMatchingPrice |
Latest Matching Price (TL/MWh) |
number |
maxMatchingPrice |
Highest Matching Price (TL/MWh) |
number |
minMatchingPrice |
Lowest Matching Price (TL/MWh) |
number |
6.71. ContractPriceSummaryExportRequestDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
Delivery Period |
string |
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
loadType |
Load Type |
string |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
year |
Year |
integer (int64) |
6.72. ContractPriceSummaryRequestDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
Delivery Period |
string |
endDate |
Date value formatted like |
string (date-time) |
loadType |
Load Type |
string |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
year |
Year |
integer (int64) |
6.73. ContractPriceSummaryResponseDto
Name | Schema |
---|---|
items |
< ContractPriceSummaryDataDto > array |
page |
|
statistics |
6.74. ContractPriceSummaryStatisticsDto
Name | Schema |
---|---|
dipPriceTotal |
number |
firstMatchingPriceTotal |
number |
latestMatchingPriceTotal |
number |
maxMatchingPriceTotal |
number |
minMatchingPriceTotal |
number |
6.75. DailyIndexPriceDataDto
Name | Description | Schema |
---|---|---|
contractName |
Contract Name |
string |
date |
Date value formatted like |
string (date-time) |
price |
DIP (TL/MWh) |
number |
priceEur |
DIP (EUR/MWh) |
number |
priceUsd |
DIP (USD/MWh) |
number |
6.76. DailyIndexPriceExportRequestDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
Delivery Period |
string |
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
loadType |
Load Type |
string |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
year |
Year |
integer (int64) |
6.77. DailyIndexPriceRequestDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
Delivery Period |
string |
endDate |
Date value formatted like |
string (date-time) |
loadType |
Load Type |
string |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
year |
Year |
integer (int64) |
6.78. DailyIndexPriceResponseDto
Name | Schema |
---|---|
items |
< DailyIndexPriceDataDto > array |
page |
|
statistics |
6.79. DailyIndexPriceStatisticsDto
Name | Schema |
---|---|
priceEurTotal |
number |
priceTotal |
number |
priceUsdTotal |
number |
6.80. DailyKotDataDto
Name | Description | Schema |
---|---|---|
basin |
Direction |
string |
dailyKot |
DailyKot (M) |
number |
dam |
Direction |
string |
damId |
Dam Id |
integer (int64) |
date |
Date value formatted like |
string (date-time) |
6.81. DailyKotExportRequestDto
Name | Description | Schema |
---|---|---|
basinName |
Date value formatted like |
string |
damName |
Date value formatted like |
string |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
6.82. DailyKotRequestDto
Name | Description | Schema |
---|---|---|
basinName |
Date value formatted like |
string |
damName |
Date value formatted like |
string |
page |
Paging Details |
6.83. DailyKotResponseDto
Name | Schema |
---|---|
items |
< DailyKotDataDto > array |
page |
6.84. DailyVolumeDataDto
Name | Description | Schema |
---|---|---|
basinName |
Basin |
string |
damId |
Dam Id |
integer (int64) |
damName |
Dam |
string |
date |
Date value formatted like |
string (date-time) |
volume |
Water Energy Provision (MWh) |
number |
6.85. DailyVolumeExportRequestDto
Name | Description | Schema |
---|---|---|
basinName |
Basin |
string |
damName |
Dam |
string |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
6.86. DailyVolumeRequestDto
Name | Description | Schema |
---|---|---|
basinName |
Basin |
string |
damName |
Dam |
string |
page |
Paging Details |
6.87. DailyVolumeResponseDto
Name | Schema |
---|---|
items |
< DailyVolumeDataDto > array |
page |
6.88. DamDataExportRequestDto
Name | Description | Schema |
---|---|---|
basinName |
Basin |
string |
damName |
Dam |
string |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
6.89. DamDataRequestDto
Name | Description | Schema |
---|---|---|
basinName |
Basin |
string |
damName |
Dam |
string |
page |
Paging Details |
6.90. DamRequestDto
Name | Description | Schema |
---|---|---|
basinName |
Basin |
string |
6.91. DamResponseDto
Name | Description | Schema |
---|---|---|
damList |
Dam List |
< string > array |
6.92. DashboardAofResponseDto
Name | Description | Schema |
---|---|---|
items |
< YekgWeightedAveragePriceDataDto > array |
|
latestUpdateTime |
Data latest update time(Date value formatted like |
string (date-time) |
6.93. DashboardBalancingPowerMarketDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
smf |
System Marginal Price Data Listing Service |
number |
yal |
Up Regulation Instructions Data Listing Service |
number |
yat |
Down Regulation Instructions Data Listing Service |
number |
6.94. DashboardBalancingPowerMarketResponseDto
Name | Description | Schema |
---|---|---|
items |
< DashboardBalancingPowerMarketDataDto > array |
|
latestUpdateTime |
Data latest update time(Date value formatted like |
string (date-time) |
6.95. DashboardDayAheadMarketDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
mcpEur |
EUR based MCP info (EUR/MWh). |
number |
mcpTr |
TL based MCP info (TL/MWh). |
number |
mcpUsd |
USD based MCP info (USD/MWh). |
number |
volume |
Trade Value (TL) |
number |
6.96. DashboardDayAheadMarketResponseDto
Name | Description | Schema |
---|---|---|
items |
< DashboardDayAheadMarketDataDto > array |
|
latestUpdateTime |
Data latest update time(Date value formatted like |
string (date-time) |
6.97. DashboardIntraDayMarketDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
gipAofTl |
Weighted Average Price TL |
number |
gipeslesmemiktar |
Matching Quantity |
number |
6.98. DashboardRealtimeConsumptionResponseDto
Name | Description | Schema |
---|---|---|
items |
< RealTimeConsumptionDataDto > array |
|
latestUpdateTime |
Data latest update time(Date value formatted like |
string (date-time) |
6.99. DashboardRealtimeGenerationResponseDto
Name | Description | Schema |
---|---|---|
items |
< RealTimeGenerationDto > array |
|
latestUpdateTime |
Data latest update time(Date value formatted like |
string (date-time) |
6.100. DashboardSpotGasMarketDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
grfEur |
DRP (EUR/1000Sm3) |
number |
grfTl |
DRP (TL/1000Sm3) |
number |
grfUsd |
DRP (USD/1000Sm3) |
number |
grfUsdMmBtu |
DRP (USD/MMBtu) |
number |
matchQuantityAmount |
Matched Quantity for DRP |
integer |
6.101. DashboardSpotGasMarketResponseDto
Name | Description | Schema |
---|---|---|
items |
< DashboardSpotGasMarketDataDto > array |
|
latestUpdateTime |
Data latest update time(Date value formatted like |
string (date-time) |
6.102. DataUpdatesRequestDto
Name | Schema |
---|---|
menuId |
integer (int64) |
6.103. DataUpdatesResponseDto
Name | Description | Schema |
---|---|---|
menuId |
integer (int64) |
|
updateTime |
Date value formatted like |
string (date-time) |
6.104. DateInitResponseDto
Name | Description | Schema |
---|---|---|
conciliationEndOfMonth |
Uzlaştırma Ay Sonu |
string (date-time) |
conciliationPeriod |
Uzlaştırma Dönemi |
string (date-time) |
dateUnit |
Åžimdi |
string (date-time) |
endOfDay |
Gün Sonu |
string (date-time) |
gopMonth |
Göp Ay |
string (date-time) |
gopYear |
Göp Yıl |
string (date-time) |
lastMonth |
Geçen Ay |
string (date-time) |
lastWeek |
Geçen Hafta |
string (date-time) |
periodBeforeYearAgo |
Bir yıl önceki uzlaştırma dönemi |
string (date-time) |
serverTime |
string (date-time) |
|
showKgupEak |
Kgüp Eak Göster |
string (date-time) |
showSupplyAndDemandCurve |
Arz Talep eğrisi göster |
string (date-time) |
thisMonth |
Bu ay |
string (date-time) |
today |
Bugün |
string (date-time) |
tomorrow |
Yarın |
string (date-time) |
tslfDay |
iskk gün |
string (date-time) |
yekdemLastDate |
string (date-time) |
|
yesterday |
Dün |
string (date-time) |
6.105. DayAheadMarketTradeVolumeDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
volumeOfAsk |
Trade Value (TL) |
number |
6.106. DayAheadMarketTradeVolumeExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.107. DayAheadMarketTradeVolumeRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.108. DayAheadMarketTradeVolumeResponseDto
Name | Schema |
---|---|
items |
< DayAheadMarketTradeVolumeDataDto > array |
page |
|
statistics |
6.109. DayAheadMarketTradeVolumeStatisticsDto
Name | Schema |
---|---|
volumeOfAskTotal |
number |
6.110. DeliveryPeriodRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
startDate |
Date value formatted like |
string (date-time) |
6.111. DeliveryPeriodResponseDto
Name | Schema |
---|---|
items |
< LabelValueDTO > array |
6.112. DeliveryYearDto
Name | Description | Schema |
---|---|---|
year |
Year |
string |
6.113. DeliveryYearRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
startDate |
Date value formatted like |
string (date-time) |
6.114. DeliveryYearResponseDto
Name | Schema |
---|---|
items |
< DeliveryYearDto > array |
6.115. DemandForecastDataDto
Name | Description | Schema |
---|---|---|
base |
Demand Forecast Data |
number (double) |
high |
Demand Forecast Data |
number (double) |
low |
Demand Forecast Data |
number (double) |
year |
Demand Forecast Year Data |
integer (int64) |
6.116. DemandForecastExportRequestDto
Name | Description | Schema |
---|---|---|
distrubutionOrganization |
Date value formatted like |
integer (int64) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
6.117. DemandForecastRequestDto
Name | Description | Schema |
---|---|---|
distrubutionOrganization |
Date value formatted like |
integer (int64) |
page |
Paging Details |
6.118. DemandForecastResponseDto
Name | Schema |
---|---|
items |
< DemandForecastDataDto > array |
page |
6.119. Distribution
Name | Schema |
---|---|
id |
integer (int64) |
name |
string |
6.120. DistributionCompanyResponseDto
Name | Description | Schema |
---|---|---|
companyId |
Company Id |
integer (int64) |
companyName |
Company Name |
string |
6.121. DistributionRegionDataDto
Name | Description | Schema |
---|---|---|
distributeCode |
Distribution Code |
string |
distributeId |
Distribution Firm ID |
integer (int64) |
6.122. DistributionRegionResponseDto
Name | Schema |
---|---|
items |
< DistributionRegionDataDto > array |
page |
6.123. DistributionRequestDto
Name | Description | Schema |
---|---|---|
period |
Date value formatted like |
string (date-time) |
6.124. DistrictRequestDto
Name | Description | Schema |
---|---|---|
provinceId |
Province Id(see: Province Listing Service) |
integer (int32) |
6.125. DistrictResponseDto
Name | Description | Schema |
---|---|---|
id |
District Id |
integer (int32) |
name |
District Adı |
string |
6.126. DsgImbalanceQuantityDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
negativeImbalanceQuantity |
Negative Imbalance Quantity (MWh) |
number |
positiveImbalanceQuantity |
Positive Imbalance Quantity (MWh) |
number |
6.127. DsgImbalanceQuantityExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
organizationId |
Organization Id(see: Organization Listing Service) |
integer (int64) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.128. DsgImbalanceQuantityRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
organizationId |
Organization Id(see: Organization Listing Service) |
integer (int64) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.129. DsgImbalanceQuantityResponseDto
Name | Schema |
---|---|
items |
< DsgImbalanceQuantityDataDto > array |
page |
|
statistics |
6.130. DsgImbalanceQuantityStatisticsDto
Name | Schema |
---|---|
negativeImbalanceQuantityTotal |
number |
positiveImbalanceQuantityTotal |
number |
6.131. DsgOrganizationListRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
startDate |
Date value formatted like |
string (date-time) |
6.132. DsgOrganizationListResponseDto
Name | Schema |
---|---|
items |
< LabelValueDTO > array |
6.133. EakDataDto
Name | Description | Schema |
---|---|---|
akarsu |
River Data. |
number |
barajli |
Dammed Hydro Data. |
number |
biokutle |
Biomass Data. |
number |
date |
Date value formatted like |
string (date-time) |
diger |
Others Data. |
number |
dogalgaz |
Natural Gas Data. |
number |
fuelOil |
Fuel Oil Data. |
number |
ithalKomur |
Import Coal Data. |
number |
jeotermal |
Geothermal Data. |
number |
linyit |
Lignite Data. |
number |
nafta |
Naphta Data. |
number |
ruzgar |
Wind Data. |
number |
tasKomur |
Black Coal Data. |
number |
time |
Hour Data. |
string |
toplam |
Total Data. |
number |
6.134. EakExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
organizationId |
Organization Id(see: Organization Listing Service) |
integer (int64) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
uevcbId |
Injection/Withdrawal Unit Id(see: Injection/Withdrawal Unit Listing Service) |
integer (int64) |
6.135. EakRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
organizationId |
Organization Id(see: Organization Listing Service) |
integer (int64) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
uevcbId |
Injection/Withdrawal Unit Id(see: Injection/Withdrawal Unit Listing Service) |
integer (int64) |
6.136. EakResponseDto
Name | Schema |
---|---|
items |
< EakDataDto > array |
page |
|
statistics |
6.137. EakStatisticsDto
Name | Schema |
---|---|
akarsuTotal |
number |
barajliTotal |
number |
biokutleTotal |
number |
digerTotal |
number |
dogalgazTotal |
number |
fuelOilTotal |
number |
ithalKomurTotal |
number |
jeotermalTotal |
number |
linyitTotal |
number |
naftaTotal |
number |
ruzgarTotal |
number |
tasKomurTotal |
number |
toplamTotal |
number |
6.138. EligibleConsumerCountDataDto
Name | Description | Schema |
---|---|---|
customerProfileGroup |
Customer Profile Group |
string |
districtName |
County Name |
string |
eligibleCount |
Eligible Customer Count |
number |
period |
Period |
string (date-time) |
provinceName |
City Name |
string |
6.139. EligibleConsumerCountExportRequestDto
Name | Description | Schema |
---|---|---|
districtName |
District Adı |
string |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
profileGroupName |
Customer Profile Group |
string |
provinceId |
Province Id(see: Province Listing Service) |
integer (int32) |
6.140. EligibleConsumerCountRequestDto
Name | Description | Schema |
---|---|---|
districtName |
District Adı |
string |
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
profileGroupName |
Customer Profile Group |
string |
provinceId |
Province Id(see: Province Listing Service) |
integer (int32) |
6.141. EligibleConsumerCountResponseDto
Name | Schema |
---|---|
items |
< EligibleConsumerCountDataDto > array |
page |
6.142. EligibleConsumerQuantityDataDto
Name | Description | Schema |
---|---|---|
period |
Period |
string (date-time) |
profilAboneGrupAdi |
Customer Profile Group |
string |
quantityOfNotUsingEligibleConsumer |
Quantitiy of Consumers Not Using Eligible Consumer Rights |
number |
quantityOfUsingEligibleConsumer |
Quantitiy of Consumers Using Eligible Consumer Rights |
number |
6.143. EligibleConsumerQuantityExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.144. EligibleConsumerQuantityRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.145. EligibleConsumerQuantityResponseDto
Name | Schema |
---|---|
items |
< EligibleConsumerQuantityDataDto > array |
page |
6.146. EntsOrganizationDataDto
Name | Description | Schema |
---|---|---|
organizationCode |
Organization Code |
string |
organizationId |
Organization ID |
integer (int64) |
organizationName |
Organization Name |
string |
organizationShortName |
Organization Short Name |
string |
6.147. EntsOrganizationExportRequestDto
Name | Description | Schema |
---|---|---|
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
organizationId |
Organization Id(see: Organization Listing Service) |
integer (int64) |
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
6.148. EntsOrganizationRequestDto
Name | Description | Schema |
---|---|---|
organizationId |
Organization Id(see: Organization Listing Service) |
integer (int64) |
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
6.149. EntsOrganizationResponseDto
Name | Schema |
---|---|
items |
< EntsOrganizationDataDto > array |
page |
6.150. EntsowDataDto
Name | Description | Schema |
---|---|---|
organizationCode |
Organization Code |
string |
organizationId |
Organization ID |
integer (int64) |
organizationName |
Organization Name |
string |
6.151. EntsowResponseDto
Name | Schema |
---|---|
items |
< EntsowDataDto > array |
page |
6.152. EntsowUevcbDataDto
Name | Description | Schema |
---|---|---|
organizationCode |
Organization Code |
string |
organizationId |
Organization ID |
integer (int64) |
organizationName |
Organization Name |
string |
6.153. EntsowUevcbExportRequestDto
Name | Description | Schema |
---|---|---|
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
provinceId |
Province Id(see: Province Listing Service) |
integer (int64) |
uevcbName |
Injection/Withdrawal Unit name |
string |
6.154. EntsowUevcbRequestDto
Name | Description | Schema |
---|---|---|
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
provinceId |
Province Id(see: Province Listing Service) |
integer (int64) |
uevcbName |
Injection/Withdrawal Unit name |
string |
6.155. EntsowUevcbResponseDto
Name | Schema |
---|---|
items |
< EntsowUevcbDataDto > array |
page |
6.156. FaultDetailsDataDto
Name | Description | Schema |
---|---|---|
faultCausedEnergyLoss |
Pre-fault Energy Loss |
number |
faultCausedPowerLoss |
Pre-Fault Power Loss |
number |
hour |
Hour Data. |
string (date-time) |
preFaultPower |
Pre-fault Power |
number |
remainingCapacity |
Remaining Capacity |
number |
6.157. FlexibleOfferBuyQuantityDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
matchedBuyingFlexibleOfferQuantity |
Matched Flexible Buying Offer Quantity (Mwh) |
number |
totalBuyingFlexibleOfferQuantity |
Total Flexible Buying Offer Quantity (Mwh) |
number |
unmatchedBuyingFlexibleOfferQuantity |
Unmatched Flexible Buying Offer Quantity (Mwh) |
number |
6.158. FlexibleOfferBuyQuantityStatisticsDto
Name | Schema |
---|---|
matchedBuyingFlexibleOfferQuantityTotals |
number |
totalBuyingFlexibleOfferQuantityTotals |
number |
unmatchedBuyingFlexibleOfferQuantityTotals |
number |
6.159. FlexibleOfferBuyResponseDto
Name | Schema |
---|---|
items |
< FlexibleOfferBuyQuantityDataDto > array |
page |
|
statistics |
6.160. FlexibleOfferBuySellExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.161. FlexibleOfferBuySellRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.162. FlexibleOfferSellQuantityDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
matchedSellingFlexibleOfferQuantity |
Matched Flexible Selling Offer Quantity (Mwh) |
number |
totalSellingFlexibleOfferQuantity |
Total Flexible Selling Offer Quantity (Mwh) |
number |
unmatchedSellingFlexibleOfferQuantity |
Unmatched Flexible Selling Offer Quantity (Mwh) |
number |
6.163. FlexibleOfferSellQuantityStatisticsDto
Name | Schema |
---|---|
matchedSellingFlexibleOfferQuantityTotals |
number |
totalSellingFlexibleOfferQuantityTotals |
number |
unmatchedSellingFlexibleOfferQuantityTotals |
number |
6.164. FlexibleOfferSellResponseDto
Name | Schema |
---|---|
items |
< FlexibleOfferSellQuantityDataDto > array |
page |
|
statistics |
6.165. FlowRateAndInstalledPowerResponse
Name | Schema |
---|---|
items |
< FlowRateAndInstalledPowerResponseDto > array |
page |
6.166. FlowRateAndInstalledPowerResponseDto
Name | Description | Schema |
---|---|---|
basinName |
Basin |
string |
cityName |
City |
string |
damName |
Dam |
string |
date |
Date value formatted like |
string (date-time) |
id |
Dam Id |
number |
installedPower |
Installed Power |
number |
unitFlowRate |
Unit Flow Rate |
number |
6.167. FrequencyCapacityAmountAndPriceExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.168. FrequencyCapacityAmountAndPriceRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.169. FrequencyCapacityAmountStatisticsDto
Name | Schema |
---|---|
amountTotal |
number |
6.170. FrequencyCapacityPriceStatisticsDto
Name | Schema |
---|---|
priceAvg |
number |
6.171. GddkDistributionResponseDto
Name | Schema |
---|---|
items |
< LabelValueDTO > array |
6.172. GddkOrganizationResponseDto
Name | Schema |
---|---|
items |
< LabelValueDTO > array |
6.173. GddkSubscriberProfileGroupResponseDto
Name | Schema |
---|---|
items |
< LabelValueDTO > array |
6.174. GddkVolumeSubscriberProfileGroupResponseDto
Name | Schema |
---|---|
items |
< LabelValueDTO > array |
6.175. GgfDeliveryPeriodRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
startDate |
Date value formatted like |
string (date-time) |
6.176. GgfDeliveryPeriodResponseDto
Name | Schema |
---|---|
items |
< LabelValueDTO > array |
6.177. ImbalanceAmountDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
negativeImbalance |
Negative Imbalance Cost (TL) |
number |
positiveImbalance |
Pozitive Imbalance Cost (TL) |
number |
6.178. ImbalanceAmountExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.179. ImbalanceAmountRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.180. ImbalanceAmountResponseDto
Name | Schema |
---|---|
items |
< ImbalanceAmountDataDto > array |
page |
|
statistics |
6.181. ImbalanceAmountStatisticsDto
Name | Schema |
---|---|
negativeImbalanceQuantityTotal |
number |
positiveImbalanceQuantityTotal |
number |
6.182. ImbalanceCostDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string (date-time) |
imbalanceCost |
Imbalance Cost (TL) |
number |
6.183. ImbalanceCostExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.184. ImbalanceCostRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.185. ImbalanceCostResponseDto
Name | Schema |
---|---|
items |
< ImbalanceCostDataDto > array |
page |
6.186. ImbalanceQuantityDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
negativeImbalance |
Negative Imbalance Quantity (MWh) |
number |
positiveImbalance |
Pozitive Imbalance Quantity (MWh) |
number |
6.187. ImbalanceQuantityExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.188. ImbalanceQuantityRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.189. ImbalanceQuantityResponseDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string (date-time) |
imbalanceQuantity |
Imbalance Quantity (MWh) |
number |
6.190. ImbalanceQuantityResponseDto
Name | Schema |
---|---|
items |
< ImbalanceQuantityDataDto > array |
page |
|
statistics |
6.191. ImbalanceQuantityStatisticsDto
Name | Schema |
---|---|
negativeImbalanceQuantityTotal |
number |
positiveImbalanceQuantityTotal |
number |
6.192. ImbalanceQuantityWrapperResponseDto
Name | Schema |
---|---|
items |
< ImbalanceQuantityResponseDataDto > array |
page |
6.193. InjectionQuantityDto
Name | Description | Schema |
---|---|---|
asphaltite |
SBPG value information in asphaltite source type |
number |
biomass |
SBPG value information in biomass source type |
number |
dam |
SBPG value information in dam hydro source type |
number |
date |
Date value formatted like |
string (date-time) |
fueloil |
SBPG value information in fueloil source type |
number |
geothermal |
SBPG value information in geothermal source type |
number |
hour |
Hour information on which the relevant value is valid |
integer (int32) |
importedCoal |
SBPG value information in imported coal source type |
number |
internationalExport |
SBPG value information in export source type |
number |
internationalImport |
SBPG value informantion in crossborder electricity import |
number |
lignite |
SBPG value information in lignite source type |
number |
lng |
SBPG value information in LNG source type |
number |
naphtha |
SBPG value information in naphtha source type |
number |
naturalGas |
SBPG value information in natural gas source type |
number |
other |
SBPG value information in other source types |
number |
river |
SBPG value information in river hydro source type |
number |
stoneCoal |
SBPG value information in stone coal source type |
number |
sun |
SBPG value information in sun source type |
number |
total |
Total settlement based power generation(SBPG) value information |
number |
wind |
SBPG value information in wind source type |
number |
6.194. InjectionQuantityExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
powerplantId |
Powerplant id |
integer (int64) |
startDate |
Date value formatted like |
string (date-time) |
6.195. InjectionQuantityRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
powerplantId |
Powerplant id |
integer (int64) |
startDate |
Date value formatted like |
string (date-time) |
6.196. InjectionQuantityResponseDto
Name | Schema |
---|---|
items |
< InjectionQuantityDto > array |
page |
|
totals |
6.197. InjectionQuantityStatisticsDto
Name | Schema |
---|---|
asphaltiteTotal |
number |
biomassTotal |
number |
damTotal |
number |
fueloilTotal |
number |
geothermalTotal |
number |
importedCoalTotal |
number |
internationalExportTotal |
number |
internationalImportTotal |
number |
ligniteTotal |
number |
lngTotal |
number |
naphtaTotal |
number |
naturalGasTotal |
number |
otherTotal |
number |
riverTotal |
number |
stoneCoalTotal |
number |
sunTotal |
number |
totalTotal |
number |
windTotal |
number |
6.198. InstalledCapacityExportRequest
Name | Description | Schema |
---|---|---|
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
period |
Period |
string (date-time) |
6.199. InstalledCapacityNewDto
Name | Description | Schema |
---|---|---|
licencedCapacity |
Installed Capacity(Licenced - MWh) |
number |
renewableEnergyType |
Source |
string |
total |
Total(MWh) |
number |
unlicencedCapacity |
Installed Capacity(Unlicenced - MWh) |
number |
6.200. InstalledCapacityOldDto
Name | Description | Schema |
---|---|---|
resourceType |
Resource Type |
string |
total |
Total |
number |
6.201. InstalledCapacityRequest
Name | Description | Schema |
---|---|---|
period |
Period |
string (date-time) |
6.202. InstalledCapacityResponse
Name | Schema |
---|---|
installedCapacities |
< BaseDTO > array |
6.203. InstalledCapacityResponseInstalledCapacityNewDto
Name | Schema |
---|---|
installedCapacities |
< InstalledCapacityNewDto > array |
6.204. InstalledCapacityResponseInstalledCapacityOldDto
Name | Schema |
---|---|
installedCapacities |
< InstalledCapacityOldDto > array |
6.205. InterconnectionLineCapacitiesDataDto
Name | Description | Schema |
---|---|---|
availableCapacity |
Total Capacity(MW) |
number |
date |
Transfer Date |
string (date-time) |
direction |
Direction |
string |
time |
Date value formatted like |
string (date-time) |
totalCapacity |
Total Capacity(MW) |
number |
6.206. InterconnectionLineCapacitiesExportRequestDto
Name | Description | Schema |
---|---|---|
direction |
Direction |
string |
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.207. InterconnectionLineCapacitiesRequestDto
Name | Description | Schema |
---|---|---|
direction |
Direction |
string |
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.208. InterconnectionLineCapacitiesResponseDto
Name | Schema |
---|---|
items |
< InterconnectionLineCapacitiesDataDto > array |
page |
6.209. InterimMcpExportRequestDto
Name | Description | Schema |
---|---|---|
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.210. InterimMcpRequestDto
Name | Description | Schema |
---|---|---|
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.211. InterimMcpResponseDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
marketTradePrice |
I.MCP (TL/MWh) |
number |
6.212. InterimMcpResponseDto
Name | Schema |
---|---|
items |
< InterimMcpResponseDataDto > array |
page |
|
statistic |
6.213. InterimMcpResponseStatisticsDto
Name | Schema |
---|---|
interimMcpAvg |
number |
6.214. InternationalLineEventDataDto
Name | Description | Schema |
---|---|---|
aciklama |
Outage Reason(Maintenance / Failure) Data |
string |
baslangicSaati |
Start Hour Data |
string |
baslangicTarihi |
Start Date Data |
string |
bitisSaati |
End Hour Data |
string |
bitisTarihi |
End Date Data |
string |
hatAdi |
Outage Location Data |
string |
olayTuru |
Outage Type Data |
string |
6.215. InternationalLineEventExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.216. InternationalLineEventRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.217. InternationalLineEventResponseDto
Name | Schema |
---|---|
items |
< InternationalLineEventDataDto > array |
page |
6.218. IntraDayDashboardMatchResponseDto
Name | Description | Schema |
---|---|---|
items |
< DashboardIntraDayMarketDataDto > array |
|
latestUpdateTime |
Data latest update time(Date value formatted like |
string (date-time) |
6.219. IskkDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
difference |
Loss Amount(MWh) |
number |
firstVersionValue |
Ä°lk versiyona ait ISKK deÄŸeri bilgisi |
number |
lastVersionValue |
Son versiyona ait ISKK deÄŸeri bilgisi |
number |
time |
Date value formatted like |
string (date-time) |
6.220. IskkExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.221. IskkListRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.222. IskkResponseDto
Name | Schema |
---|---|
items |
< IskkDataDto > array |
page |
6.223. KgupDataDto
Name | Description | Schema |
---|---|---|
akarsu |
River Data. |
number |
barajli |
Dammed Hydro Data. |
number |
biokutle |
Biomass Data. |
number |
date |
Date value formatted like |
string (date-time) |
diger |
Others Data. |
number |
dogalgaz |
Natural Gas Data. |
number |
fuelOil |
Fuel Oil Data. |
number |
ithalKomur |
Import Coal Data. |
number |
jeotermal |
Geothermal Data. |
number |
linyit |
Lignite Data. |
number |
nafta |
Naphta Data. |
number |
ruzgar |
Wind Data. |
number |
tasKomur |
Black Coal Data. |
number |
time |
Hour Data. |
string |
toplam |
Total Data. |
number |
6.224. KgupExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
organizationId |
Organization Id(see: Organization Listing Service) |
integer (int64) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
uevcbId |
Injection/Withdrawal Unit Id(see: Injection/Withdrawal Unit Listing Service) |
integer (int64) |
6.225. KgupRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
organizationId |
Organization Id(see: Organization Listing Service) |
integer (int64) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
uevcbId |
Injection/Withdrawal Unit Id(see: Injection/Withdrawal Unit Listing Service) |
integer (int64) |
6.226. KgupResponseDto
Name | Schema |
---|---|
items |
< KgupDataDto > array |
page |
|
totals |
6.227. KgupStatisticsDto
Name | Schema |
---|---|
akarsuTotal |
number |
barajliTotal |
number |
biokutleTotal |
number |
digerTotal |
number |
dogalgazTotal |
number |
fuelOilTotal |
number |
ithalKomurTotal |
number |
jeotermalTotal |
number |
linyitTotal |
number |
naftaTotal |
number |
ruzgarTotal |
number |
tasKomurTotal |
number |
toplamTotal |
number |
6.228. KotDataDto
Name | Description | Schema |
---|---|---|
basinName |
Basin |
string |
damName |
Dam |
string |
date |
Date value formatted like |
string (date-time) |
id |
Dam Id |
number |
maxKot |
Maximum Kot |
number |
minKot |
Minimum Kot |
number |
6.229. KotResponseDto
Name | Schema |
---|---|
items |
< KotDataDto > array |
page |
6.230. KudupDataDto
Name | Description | Schema |
---|---|---|
akarsu |
River Data. |
number |
barajli |
Dammed Hydro Data. |
number |
biokutle |
Biomass Data. |
number |
date |
Date value formatted like |
string (date-time) |
diger |
Others Data. |
number |
dogalgaz |
Natural Gas Data. |
number |
fuelOil |
Fuel Oil Data. |
number |
ithalKomur |
Import Coal Data. |
number |
jeotermal |
Geothermal Data. |
number |
linyit |
Lignite Data. |
number |
nafta |
Naphta Data. |
number |
ruzgar |
Wind Data. |
number |
tasKomur |
Black Coal Data. |
number |
time |
Hour Data. |
string |
toplam |
Total Data. |
number |
6.231. KudupExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
organizationId |
Organization Id(see: Organization Listing Service) |
integer (int64) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
uevcbId |
Injection/Withdrawal Unit Id(see: Injection/Withdrawal Unit Listing Service) |
integer (int64) |
6.232. KudupRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
organizationId |
Organization Id(see: Organization Listing Service) |
integer (int64) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
uevcbId |
Injection/Withdrawal Unit Id(see: Injection/Withdrawal Unit Listing Service) |
integer (int64) |
6.233. KudupResponseDto
Name | Schema |
---|---|
items |
< KudupDataDto > array |
page |
|
statistics |
6.234. KudupStatisticsDto
Name | Schema |
---|---|
akarsuTotal |
number |
barajliTotal |
number |
biokutleTotal |
number |
digerTotal |
number |
dogalgazTotal |
number |
fuelOilTotal |
number |
ithalKomurTotal |
number |
jeotermalTotal |
number |
linyitTotal |
number |
naftaTotal |
number |
ruzgarTotal |
number |
tasKomurTotal |
number |
toplamTotal |
number |
6.235. LabelValueDTO
Name | Schema |
---|---|
label |
string |
value |
string |
6.236. LicencedLicencedRealtimeGenerationExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
powerPlantId |
Powerplant id |
integer (int64) |
startDate |
Date value formatted like |
string (date-time) |
6.237. LicencedRealtimeGenerationRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
powerPlantId |
Powerplant id |
integer (int64) |
startDate |
Date value formatted like |
string (date-time) |
6.238. LicencedRealtimeGenerationResponseDataDto
Name | Description | Schema |
---|---|---|
biyogaz |
Biogas(MWh) |
number |
biyokutle |
Biomass |
number |
copGazi |
Land Fill Gas(MWh) |
number |
date |
Date value formatted like |
string (date-time) |
diger |
Other(MWh) |
number |
gunes |
Solar |
number |
hour |
Hour Data. |
string (date-time) |
jeotermal |
Geothermal |
number |
kanalTipi |
Canal Type(MWh) |
number |
nehirTipi |
River |
number |
rezervuarli |
Dammed Hydro With Reservoir(MWh) |
number |
ruzgar |
Wind |
number |
toplam |
Total |
number |
6.239. LicencedRealtimeGenerationResponseDto
Name | Schema |
---|---|
items |
|
page |
|
totals |
6.240. LicensedPowerPlantInvestmentDataDto
Name | Description | Schema |
---|---|---|
geciciKabulTarihi |
Temp Admission Date |
string (date-time) |
il |
City |
string |
ilaveKuruluGuc |
Additional Power |
number |
lisansNo |
License No |
string |
lisansTarihi |
Date value formatted like |
string (date-time) |
santralAdi |
Power Plant Name |
string |
sirketAdi |
Company Name |
string |
uniteGucu |
Unit Power |
string |
uniteSayisi |
Unit Count |
string |
yakitCinsi |
Fuel Type |
string |
6.241. LicensedPowerPlantInvestmentExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.242. LicensedPowerPlantInvestmentRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.243. LicensedPowerPlantInvestmentResponseDto
Name | Schema |
---|---|
items |
< LicensedPowerPlantInvestmentDataDto > array |
page |
|
totals |
6.244. LicensedPowerPlantInvestmentStatisticsDto
Name | Schema |
---|---|
ilaveKuruluGucTotal |
number |
6.245. LicensedPowerPlantListRequestDto
Name | Description | Schema |
---|---|---|
period |
Date value formatted like |
string (date-time) |
6.246. LicensedPowerPlantListResponseDto
Name | Description | Schema |
---|---|---|
eic |
Powerplant EIC(ETSO) code |
string |
name |
Powerplant name |
string |
powerPlantId |
Powerplant id |
integer (int64) |
shortName |
Powerplant short name |
string |
6.247. LicensedRealtimeGenerationStatisticsDto
Name | Schema |
---|---|
biogasTotal |
number |
biomassTotal |
number |
canalTypeTotal |
number |
geothermalTotal |
number |
lfgTotal |
number |
otherTotal |
number |
reservoirTotal |
number |
riverTotal |
number |
solarTotal |
number |
totalTotal |
number |
windTotal |
number |
6.248. LoadEstimationPlanDataDto
Name | Description | Schema |
---|---|---|
date |
Start Date |
string (date-time) |
lep |
Load Forecast (MWh) |
number |
time |
Date value formatted like |
string |
6.249. LoadEstimationPlanExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.250. LoadEstimationPlanRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.251. LoadEstimationPlanResponseDto
Name | Schema |
---|---|
items |
< LoadEstimationPlanDataDto > array |
page |
6.252. LoadTypeRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
startDate |
Date value formatted like |
string (date-time) |
6.253. LoadTypeResponseDto
Name | Schema |
---|---|
items |
< LabelValueDTO > array |
6.254. MainTariffGroup
Name | Schema |
---|---|
id |
integer (int32) |
name |
string |
6.255. MarketMessageSystemDataDto
Name | Description | Schema |
---|---|---|
capacityAtCaseTime |
Affected Capacity |
number |
caseEndDate |
Date value formatted like |
string (date-time) |
caseStartDate |
Date value formatted like |
string (date-time) |
faultDetails |
< FaultDetailsDataDto > array |
|
id |
Id |
integer (int64) |
operatorPower |
Powerplant name |
number |
orgName |
Organization name |
string |
powerPlantName |
Powerplant name |
string |
reason |
Powerplant name |
string |
uevcbId |
Injection/Withdrawal Unit Id(see: Injection/Withdrawal Unit Listing Service) |
integer (int64) |
uevcbName |
Injection/Withdrawal Unit name |
string |
6.256. MarketMessageSystemExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
mesajTipId |
Message Type Id(See:Market Message System Message Type List Service) |
integer (int64) |
organizationId |
Organization Id(see:DAM Clearing Quantity Organization Listing Service) |
integer (int64) |
page |
Paging Details |
|
powerPlantId |
Powerplant Id(see: Market Message System Power Plant List Service) |
integer (int64) |
regionId |
Region ID(see:Market Message System Region List Service) |
integer (int64) |
startDate |
Date value formatted like |
string (date-time) |
uevcbId |
Injection/Withdrawal Unit Id(see: Market Message System Injection/Withdrawal Unit List Service) |
integer (int64) |
6.257. MarketMessageSystemRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
mesajTipId |
Message Type Id(See:Market Message System Message Type List Service) |
integer (int64) |
organizationId |
Organization Id(see:DAM Clearing Quantity Organization Listing Service) |
integer (int64) |
page |
Paging Details |
|
powerPlantId |
Powerplant Id(see: Market Message System Power Plant List Service) |
integer (int64) |
regionId |
Region ID(see:Market Message System Region List Service) |
integer (int64) |
startDate |
Date value formatted like |
string (date-time) |
uevcbId |
Injection/Withdrawal Unit Id(see: Market Message System Injection/Withdrawal Unit List Service) |
integer (int64) |
6.258. MarketMessageSystemResponseDto
Name | Schema |
---|---|
items |
< MarketMessageSystemDataDto > array |
page |
6.259. MarketParticipantOrganizationFilterResponseDto
Name | Schema |
---|---|
items |
< LabelValueDTO > array |
page |
6.260. MarketParticipantsDataDto
Name | Description | Schema |
---|---|---|
damEntry |
DAM Participation |
boolean |
eicCode |
Organization EIC Code |
string |
id |
Id |
integer (int64) |
intraDayEntry |
IDM Participation |
boolean |
legalStatus |
Legal Status |
string |
naturalGasMarketEntry |
Natural Gas Participation |
boolean |
orgCode |
Organization Code |
string |
orgName |
Organization Name |
string |
vepEntry |
PFM Participation |
boolean |
yekgEntry |
YEK-G Participation |
boolean |
6.261. MarketParticipantsExportRequestDto
Name | Description | Schema |
---|---|---|
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
organizationId |
Organization Id(see: Organization Listing Service) |
integer (int64) |
page |
Paging Details |
6.262. MarketParticipantsRequestDto
Name | Description | Schema |
---|---|---|
organizationId |
Organization Id(see: Organization Listing Service) |
integer (int64) |
page |
Paging Details |
6.263. MarketParticipantsResponseDto
Name | Schema |
---|---|
items |
< MarketParticipantsDataDto > array |
page |
6.264. MatchedFlexibleOfferQuantityDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
matchedFlexibleBuyingOfferQuantity |
Total Flexible Buying Offer Matched Quantity(MWh) |
number |
matchedFlexibleSellingOfferQuantity |
Total Flexible Selling Offer Matched Quantity(MWh) |
number |
6.265. MatchedFlexibleOfferQuantityExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.266. MatchedFlexibleOfferQuantityRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.267. MatchedFlexibleOfferQuantityResponseDto
Name | Schema |
---|---|
items |
< MatchedFlexibleOfferQuantityDataDto > array |
page |
|
statistics |
6.268. MatchedFlexibleOfferQuantityStatisticsDto
Name | Schema |
---|---|
matchingFlexDemandTotals |
number |
matchingFlexSupplyTotals |
number |
6.269. MatchingQuantityDataDto
Name | Description | Schema |
---|---|---|
clearingQuantityAsk |
Matching Bid Quantity (MWh) |
number |
clearingQuantityBid |
Matching Offer Quantity (MWh) |
number |
kontratAdi |
Contrat Name; |
string |
kontratTuru |
Contrat Type; |
string |
6.270. MatchingQuantityExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
organizationId |
Organization id value. For listing every organization, see: |
integer (int64) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.271. MatchingQuantityRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
organizationId |
Organization id value. For listing every organization, see: |
integer (int64) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.272. MatchingQuantityResponseDto
Name | Schema |
---|---|
items |
< MatchingQuantityDataDto > array |
page |
|
statistics |
6.273. MatchingQuantityStatisticsDto
Name | Schema |
---|---|
clearingQuantityAskTotal |
number |
clearingQuantityBidTotal |
number |
6.274. MaximumSettlementPriceDataDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
gopMaxPrice |
Max Settlement Price (TL/MWh) |
number |
importedCoal |
Imported Coal(TL/MWh) |
number |
localCoal |
Domestic Coal (TL/MWh) |
number |
naturalGas |
Natural Gas/Fuel Oil/Naphtha/LPG/Diesel (TL/MWh) |
number |
other |
Other Sources (TL/MWh) |
number |
period |
Date value formatted like |
string (date-time) |
startDate |
Date value formatted like |
string (date-time) |
6.275. MaximumSettlementPriceExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.276. MaximumSettlementPriceRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.277. MaximumSettlementPriceResponseDto
Name | Schema |
---|---|
items |
< MaximumSettlementPriceDataDto > array |
page |
|
statistics |
6.278. MaximumSettlementPriceStatisticsDto
Name | Schema |
---|---|
gopMaxPriceTotal |
number |
importedCoalTotal |
number |
localCoalTotal |
number |
naturalGasTotal |
number |
otherTotal |
number |
6.279. MenuSettingsRequestDto
Name | Schema |
---|---|
menuId |
integer (int64) |
6.280. MenuSettingsResponseDto
Name | Description | Schema |
---|---|---|
descriptionEn |
Sayfa EN açıklaması |
string |
descriptionTr |
Sayfa TR açıklaması |
string |
historyEn |
Ingilizce olarak, sayfa verisi geçmişi ile ilgili metinsel bilgi |
string |
historyTr |
Türkçe olarak, sayfa verisi geçmişi ile ilgili metinsel bilgi |
string |
menuId |
integer (int64) |
|
rangeMaxValue |
Veri aralik maksimum sınırı |
integer (int64) |
rangeType |
Veri aralık sınır tipi. GUN,AY,YIL seçeneğinde enum olacak |
string |
seoKeywordsEn |
SEO Keywords EN |
string |
seoKeywordsTr |
SEO Keywords TR |
string |
sourceEn |
Page Data Source English |
string |
sourceTr |
Page Data Source Turkish |
string |
6.281. MenuTreeDto
Name | Schema |
---|---|
children |
< MenuTreeDto > array |
id |
integer (int64) |
labelEn |
string |
labelTr |
string |
menuOrder |
integer (int64) |
urlEn |
string |
urlTr |
string |
6.282. MenuTreeResponseDto
Name | Schema |
---|---|
items |
< MenuTreeDto > array |
page |
6.283. MeterCountDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
meterQuantity |
Meter Count |
integer (int64) |
6.284. MeterCountExportRequestDto
Name | Description | Schema |
---|---|---|
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
6.285. MeterCountRequestDto
Name | Description | Schema |
---|---|---|
page |
Paging Details |
6.286. MeterCountResponseDto
Name | Schema |
---|---|
items |
< MeterCountDataDto > array |
page |
6.287. MeterCountSubjectToRetroactiveAdjustmentDataDto
Name | Description | Schema |
---|---|---|
hourlyTimedMeterCount |
Hourly Meter Count |
number |
period |
Date value formatted like |
string (date-time) |
singleTimedMeterCount |
Single Tariff Meter Count |
number |
threeTimedMeterCount |
Three-Tariff Meter Count |
number |
total |
Total |
number |
6.288. MeterCountSubjectToRetroactiveAdjustmentExportRequestDto
Name | Description | Schema |
---|---|---|
distributionId |
Distribution Id |
integer (int64) |
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
subscriberProfileGroupName |
Customer Profile Group Name |
string |
6.289. MeterCountSubjectToRetroactiveAdjustmentRequestDto
Name | Description | Schema |
---|---|---|
distributionId |
Distribution Id |
integer (int64) |
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
subscriberProfileGroupName |
Customer Profile Group Name |
string |
6.290. MeterCountSubjectToRetroactiveAdjustmentResponseDto
Name | Schema |
---|---|
items |
|
page |
|
statistics |
6.291. MeterCountSubjectToRetroactiveAdjustmentStatisticsDto
Name | Schema |
---|---|
hourlyTimedMeterCountTotal |
number |
singleTimedMeterCountTotal |
number |
threeTimedMeterCountTotal |
number |
totalCountTotal |
number |
6.292. MeterReadingType
Name | Schema |
---|---|
id |
integer (int64) |
name |
string |
6.293. MeterVolumeDataDto
Name | Description | Schema |
---|---|---|
cekisArtis |
Withdrawal Increase (MWh) |
number |
cekisAzalis |
Withdrawal Decrease (MWh) |
number |
period |
Date value formatted like |
string (date-time) |
subscriberProfileGroup |
Customer Profile Group |
string |
verisArtis |
Injection Increase (MWh) |
number |
verisAzalis |
Injection Decrease (MWh) |
number |
version |
Date value formatted like |
string (date-time) |
6.294. MeterVolumeExportRequestDto
Name | Description | Schema |
---|---|---|
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
meterReadOrgId |
Organization Id |
integer (int64) |
page |
Paging Details |
|
periodEndDate |
Date value formatted like |
string (date-time) |
periodStartDate |
Date value formatted like |
string (date-time) |
subscriberProfileGroup |
Customer Profile Group Name |
string |
versionEndDate |
Date value formatted like |
string (date-time) |
versionStartDate |
Date value formatted like |
string (date-time) |
6.295. MeterVolumeRequestDto
Name | Description | Schema |
---|---|---|
meterReadOrgId |
Organization Id |
integer (int64) |
page |
Paging Details |
|
periodEndDate |
Date value formatted like |
string (date-time) |
periodStartDate |
Date value formatted like |
string (date-time) |
subscriberProfileGroup |
Customer Profile Group Name |
string |
versionEndDate |
Date value formatted like |
string (date-time) |
versionStartDate |
Date value formatted like |
string (date-time) |
6.296. MeterVolumeResponseDto
Name | Schema |
---|---|
items |
< MeterVolumeDataDto > array |
page |
|
statistics |
6.297. MeterVolumeStatisticsDto
Name | Schema |
---|---|
cekisArtisTotal |
number |
cekisAzalisTotal |
number |
verisArtisTotal |
number |
verisAzalisTotal |
number |
6.298. MinMaxAskPriceDataDto
Name | Description | Schema |
---|---|---|
contractName |
Contrat Name; |
string |
contractType |
Contrat Type; |
string |
maxAskPrice |
Max. Offer Price (TL/MWh) |
number |
minAskPrice |
Min. Offer Price (TL/MWh) |
number |
6.299. MinMaxAskPriceExportRequest
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.300. MinMaxAskPriceRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.301. MinMaxAskPriceResponseDto
Name | Schema |
---|---|
items |
< MinMaxAskPriceDataDto > array |
page |
6.302. MinMaxMatchingPriceDataDto
Name | Description | Schema |
---|---|---|
contractName |
Contrat Name; |
string |
contractType |
Contrat Type; |
string |
maxMatchingPrice |
Max Matching Price (TL/MWh) |
number |
minMatchingPrice |
Min Matching Price (TL/MWh) |
number |
6.303. MinMaxMatchingPriceExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.304. MinMaxMatchingPriceRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.305. MinMaxMatchingPriceResponseDto
Name | Schema |
---|---|
items |
< MinMaxMatchingPriceDataDto > array |
page |
6.306. MinMaxOfferPriceDataDto
Name | Description | Schema |
---|---|---|
contractName |
Contrat Name; |
string |
contractType |
Contrat Type; |
string |
maxOfferPrice |
Max. Offer Price (TL/MWh) |
number |
minOfferPrice |
Min. Offer Price (TL/MWh) |
number |
6.307. MinMaxOfferPriceExportRequest
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.308. MinMaxOfferPriceRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.309. MinMaxOfferPriceResponseDto
Name | Schema |
---|---|
items |
< MinMaxOfferPriceDataDto > array |
page |
6.310. ModelAndView
Name | Schema |
---|---|
empty |
boolean |
model |
< string, object > map |
modelMap |
< string, object > map |
reference |
boolean |
status |
enum (CONTINUE, SWITCHING_PROTOCOLS, PROCESSING, CHECKPOINT, OK, CREATED, ACCEPTED, NON_AUTHORITATIVE_INFORMATION, NO_CONTENT, RESET_CONTENT, PARTIAL_CONTENT, MULTI_STATUS, ALREADY_REPORTED, IM_USED, MULTIPLE_CHOICES, MOVED_PERMANENTLY, FOUND, MOVED_TEMPORARILY, SEE_OTHER, NOT_MODIFIED, USE_PROXY, TEMPORARY_REDIRECT, PERMANENT_REDIRECT, BAD_REQUEST, UNAUTHORIZED, PAYMENT_REQUIRED, FORBIDDEN, NOT_FOUND, METHOD_NOT_ALLOWED, NOT_ACCEPTABLE, PROXY_AUTHENTICATION_REQUIRED, REQUEST_TIMEOUT, CONFLICT, GONE, LENGTH_REQUIRED, PRECONDITION_FAILED, PAYLOAD_TOO_LARGE, REQUEST_ENTITY_TOO_LARGE, URI_TOO_LONG, REQUEST_URI_TOO_LONG, UNSUPPORTED_MEDIA_TYPE, REQUESTED_RANGE_NOT_SATISFIABLE, EXPECTATION_FAILED, I_AM_A_TEAPOT, INSUFFICIENT_SPACE_ON_RESOURCE, METHOD_FAILURE, DESTINATION_LOCKED, UNPROCESSABLE_ENTITY, LOCKED, FAILED_DEPENDENCY, UPGRADE_REQUIRED, PRECONDITION_REQUIRED, TOO_MANY_REQUESTS, REQUEST_HEADER_FIELDS_TOO_LARGE, UNAVAILABLE_FOR_LEGAL_REASONS, INTERNAL_SERVER_ERROR, NOT_IMPLEMENTED, BAD_GATEWAY, SERVICE_UNAVAILABLE, GATEWAY_TIMEOUT, HTTP_VERSION_NOT_SUPPORTED, VARIANT_ALSO_NEGOTIATES, INSUFFICIENT_STORAGE, LOOP_DETECTED, BANDWIDTH_LIMIT_EXCEEDED, NOT_EXTENDED, NETWORK_AUTHENTICATION_REQUIRED) |
view |
|
viewName |
string |
6.311. MonthlySupplyPriceIndexDataDto
Name | Description | Schema |
---|---|---|
mainTariffGroupName |
Main Tariff Group |
string |
period |
Period |
string (date-time) |
subIndex |
Sub Index |
number |
topIndex |
Top Index |
number |
6.312. MonthlySupplyPriceIndexExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
groupId |
Main Tariff Group ID |
integer (int64) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.313. MonthlySupplyPriceIndexRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
groupId |
Main Tariff Group ID |
integer (int64) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.314. MonthlySupplyPriceIndexResponseDto
Name | Schema |
---|---|
items |
< MonthlySupplyPriceIndexDataDto > array |
page |
6.315. MultipleFactorDataDto
Name | Description | Schema |
---|---|---|
multiplier |
Multiple Factor |
number |
period |
Date value formatted like |
string (date-time) |
time |
Date value formatted like |
string (date-time) |
6.316. MultipleFactorExportRequestDto
Name | Description | Schema |
---|---|---|
distributionId |
Distribution Firm ID |
integer (int64) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
meterReadingType |
Meter Reading Type |
integer (int64) |
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
subscriberProfileGroup |
Profile Group |
integer (int64) |
6.317. MultipleFactorRequestDto
Name | Description | Schema |
---|---|---|
distributionId |
Distribution Firm ID |
integer (int64) |
meterReadingType |
Meter Reading Type |
integer (int64) |
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
subscriberProfileGroup |
Profile Group |
integer (int64) |
6.318. MultipleFactorResponseDto
Name | Schema |
---|---|
items |
< MultipleFactorDataDto > array |
page |
6.319. NominalCapacityDataDto
Name | Description | Schema |
---|---|---|
bidQuantity |
Bid Quantity |
number |
date |
Date value formatted like |
string (date-time) |
offerQuantity |
Offer Quantity |
number |
time |
Date value formatted like |
string (date-time) |
6.320. NominalCapacityExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.321. NominalCapacityRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.322. NominalCapacityResponseDto
Name | Schema |
---|---|
items |
< NominalCapacityDataDto > array |
page |
6.323. OfferPriceStatisticsDto
Name | Schema |
---|---|
bestBuyPriceTotal |
number |
bestSellPriceTotal |
number |
lastMatchPriceTotal |
number |
6.324. OrderSummaryDownDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
downRegulationDelivered |
Total Down Regulation Instructions |
number |
downRegulationOneCoded |
Down Regulation 1 Coded (MWh) |
number |
downRegulationTwoCoded |
Down Regulation 2 Coded (MWh) |
number |
downRegulationZeroCoded |
Down Regulation 0 Coded (MWh) |
number |
hour |
Hour Data. |
string |
net |
Net Regulation Instructions |
number |
6.325. OrderSummaryDownExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.326. OrderSummaryDownRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.327. OrderSummaryDownResponseDto
Name | Schema |
---|---|
items |
< OrderSummaryDownDataDto > array |
page |
|
statistics |
6.328. OrderSummaryDownStatisticsDto
Name | Schema |
---|---|
downRegulationOneCodedTotal |
number |
downRegulationTwoCodedTotal |
number |
downRegulationZeroCodedTotal |
number |
6.329. OrderSummaryUpDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
net |
Net Regulation Instructions |
number |
upRegulationDelivered |
Total Up Regulation Instructions |
number |
upRegulationOneCoded |
Up Regulation 1 Coded (MWh) |
number |
upRegulationTwoCoded |
Up Regulation 2 Coded (MWh) |
number |
upRegulationZeroCoded |
Up Regulation 0 Coded (MWh) |
number |
6.330. OrderSummaryUpExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.331. OrderSummaryUpRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.332. OrderSummaryUpResponseDto
Name | Schema |
---|---|
items |
< OrderSummaryUpDataDto > array |
page |
|
statistics |
6.333. OrderSummaryUpStatisticsDto
Name | Schema |
---|---|
upRegulationOneCodedTotal |
number |
upRegulationTwoCodedTotal |
number |
upRegulationZeroCodedTotal |
number |
6.334. OrganizationDto
Name | Description | Schema |
---|---|---|
organizationEtsoCode |
Organization Etso Code |
string |
organizationId |
Organization Id(see: Organization Listing Service) |
integer (int64) |
organizationName |
Organization name |
string |
organizationShortName |
Organization Short Name |
string |
organizationStatus |
Organization Status |
string |
6.335. OrganizationListRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
startDate |
Date value formatted like |
string (date-time) |
6.336. OrganizationResponseDto
Name | Schema |
---|---|
items |
< OrganizationDto > array |
6.337. Page
Name | Description | Schema |
---|---|---|
number |
Related page number |
integer (int64) |
size |
Item count for a single page |
integer (int64) |
sort |
Special sorting configuration |
|
total |
Total item count for the frontend apps, calculated and sent from the server side. |
integer (int64) |
6.338. ParticipantCountBasedUponLicenseTypeDataDto
Name | Description | Schema |
---|---|---|
licence |
License Type |
string |
licenceId |
integer (int64) |
|
organizationCount |
Organization Count |
number |
privateSector |
Private Sector Participant Count |
number |
publicCompany |
Public Sector Participant Count |
number |
6.339. ParticipantCountBasedUponLicenseTypeExportRequestDto
Name | Description | Schema |
---|---|---|
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.340. ParticipantCountBasedUponLicenseTypeRequestDto
Name | Description | Schema |
---|---|---|
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.341. ParticipantCountBasedUponLicenseTypeResponseDto
Name | Schema |
---|---|
items |
|
page |
|
statistics |
6.342. ParticipantCountBasedUponLicenseTypeStatisticsDto
Name | Schema |
---|---|
organizationCountTotal |
number |
privateSectorTotal |
number |
publicCompanyTotal |
number |
6.343. PercentageConsumptionInfoDataDto
Name | Description | Schema |
---|---|---|
commercial |
Commercial (MWh) |
number |
consumptionRatioBasedOnProvince |
Consumption Ratio Based On Province (%) |
number |
generalTotal |
General Total (MWh) |
number |
household |
Household (MWh) |
number |
industry |
Industry (MWh) |
number |
irrigation |
Irrigation (MWh) |
number |
lightning |
Lightning (MWh) |
number |
other |
Other (MWh) |
number |
period |
Period |
string (date-time) |
province |
Province |
string |
6.344. PercentageConsumptionInfoExportRequestDto
Name | Description | Schema |
---|---|---|
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
provinceId |
Province Id(see: Province Listing Service) |
integer (int64) |
6.345. PercentageConsumptionInfoRequestDto
Name | Description | Schema |
---|---|---|
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
provinceId |
Province Id(see: Province Listing Service) |
integer (int64) |
6.346. PercentageConsumptionInfoResponseDto
Name | Schema |
---|---|
items |
< PercentageConsumptionInfoDataDto > array |
page |
|
statistics |
6.347. PercentageConsumptionInfoStatisticsDto
Name | Schema |
---|---|
commercial |
number |
generalTotal |
number |
household |
number |
industry |
number |
irrigation |
number |
lightning |
number |
other |
number |
6.348. PortfolioIncomeDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
portfolioIncome |
Ä°lk versiyona ait ISKK deÄŸeri bilgisi |
number |
6.349. PortfolioIncomeExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.350. PortfolioIncomeRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.351. PortfolioIncomeResponseDto
Name | Schema |
---|---|
items |
< PortfolioIncomeDataDto > array |
page |
6.352. PowerOutageExportRequest
Name | Description | Schema |
---|---|---|
distributionCompanyId |
Selected Distribution Company Id(see: Distribution Company listing service) |
integer (int64) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
provinceId |
Province Id(see: Province Listing Service) |
integer (int32) |
6.353. PowerOutageRequest
Name | Description | Schema |
---|---|---|
distributionCompanyId |
Selected Distribution Company Id(see: Distribution Company listing service) |
integer (int64) |
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
provinceId |
Province Id(see: Province Listing Service) |
integer (int32) |
6.354. PowerOutageResponseDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
distributionCompanyName |
Distribution Company Name |
string |
district |
District |
string |
effectedNeighbourhoods |
Effected Neighbourhoods |
string |
effectedSubscribers |
Effected Subscribers |
integer (int64) |
endTime |
Date value formatted like |
string (date-time) |
hourlyLoadAvg |
Hourly Load AVG |
number |
id |
Id |
integer (int64) |
province |
Province Id(see: Province Listing Service) |
string |
reason |
Outage Reason |
string |
startTime |
Date value formatted like |
string (date-time) |
6.355. PowerOutageResponseDto
Name | Schema |
---|---|
items |
< PowerOutageResponseDataDto > array |
page |
6.356. PowerPlantDto
Name | Description | Schema |
---|---|---|
eic |
Powerplant EIC(ETSO) code |
string |
id |
Powerplant id |
integer (int64) |
name |
Powerplant name |
string |
shortName |
Powerplant short name |
string |
6.357. PowerPlantRequestDto
Name | Description | Schema |
---|---|---|
organizationId |
Organization Id(see: Organization Listing Service) |
integer (int64) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.358. PowerPlantResponseDto
Name | Schema |
---|---|
items |
< PowerPlantDto > array |
6.359. PriceIndependentBidDataDto
Name | Description | Schema |
---|---|---|
bidVolume |
Total Flexible Buying Offer Quantity (Mwh) |
number |
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
6.360. PriceIndependentBidExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.361. PriceIndependentBidRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.362. PriceIndependentBidResponseDto
Name | Schema |
---|---|
items |
< PriceIndependentBidDataDto > array |
page |
|
statistics |
6.363. PriceIndependentBidStatisticsDto
Name | Schema |
---|---|
bidVolumeTotal |
number |
6.364. PriceIndependentOfferDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
offerVolume |
Total Flexible Buying Offer Quantity (Mwh) |
number |
6.365. PriceIndependentOfferExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.366. PriceIndependentOfferRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.367. PriceIndependentOfferResponseDto
Name | Schema |
---|---|
items |
< PriceIndependentOfferDataDto > array |
page |
|
statistics |
6.368. PriceIndependentOfferStatisticsDto
Name | Schema |
---|---|
offerVolumeTotal |
number |
6.369. PrimaryFrequencyCapacityAmountDataDto
Name | Description | Schema |
---|---|---|
amount |
Frequency Capacity Price |
number |
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
integer (int32) |
6.370. PrimaryFrequencyCapacityAmountResponseDto
Name | Schema |
---|---|
items |
< PrimaryFrequencyCapacityAmountDataDto > array |
page |
|
statistics |
6.371. PrimaryFrequencyCapacityPriceDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
integer (int32) |
price |
Frequency Capacity Amount |
number |
6.372. PrimaryFrequencyCapacityPriceResponseDto
Name | Schema |
---|---|
items |
< PrimaryFrequencyCapacityPriceDataDto > array |
page |
|
statistics |
6.373. ProfileSubscriptionGroupRequestDto
Name | Description | Schema |
---|---|---|
districtName |
District Adı |
string |
period |
Date value formatted like |
string (date-time) |
provinceId |
Province Id(see: Province Listing Service) |
integer (int64) |
6.374. ProvinceResponseDto
Name | Description | Schema |
---|---|---|
id |
Province Id(see: Province Listing Service) |
integer (int32) |
name |
Name |
string |
6.375. PtfExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.376. PtfRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.377. PtfResponseDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
price |
TL based MCP info (TL/MWh). |
number |
priceEur |
EUR based MCP info (EUR/MWh). |
number |
priceUsd |
USD based MCP info (USD/MWh). |
number |
6.378. PtfResponseDto
Name | Schema |
---|---|
items |
< PtfResponseDataDto > array |
page |
|
statistic |
6.379. PtfResponseStatisticsDto
Name | Schema |
---|---|
priceAvg |
number |
priceEurAvg |
number |
priceEurMax |
number |
priceEurMin |
number |
priceEurTotal |
number |
priceMax |
number |
priceMin |
number |
priceTotal |
number |
priceUsdAvg |
number |
priceUsdMax |
number |
priceUsdMin |
number |
priceUsdTotal |
number |
ptfEurWeightedAvg |
number |
ptfUsdWeightedAvg |
number |
ptfWeightedAvg |
number |
6.380. RealTimeConsumptionDataDto
Name | Description | Schema |
---|---|---|
consumption |
Consumption(MWh) |
number |
date |
Date value formatted like |
string (date-time) |
time |
Date value formatted like |
string |
6.381. RealTimeConsumptionExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.382. RealTimeConsumptionRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.383. RealTimeConsumptionResponseDto
Name | Schema |
---|---|
items |
< RealTimeConsumptionDataDto > array |
page |
|
statistics |
6.384. RealTimeConsumptionStatisticsDto
Name | Schema |
---|---|
consumptionAvg |
number |
consumptionMax |
number |
consumptionMin |
number |
consumptionTotal |
number |
6.385. RealTimeGenerationDto
Name | Description | Schema |
---|---|---|
asphaltiteCoal |
Asphaltite Coal |
number |
biomass |
Biomass |
number |
blackCoal |
Black Coal |
number |
dammedHydro |
Dammed Hydro |
number |
date |
Date value formatted like |
string (date-time) |
fueloil |
Fuel Oil |
number |
geothermal |
Geothermal |
number |
hour |
Hour Data. |
string |
importCoal |
Import Coal |
number |
importExport |
Import-Export |
number |
lignite |
Lignite |
number |
lng |
LNG |
number |
naphta |
Naphta |
number |
naturalGas |
Natural Gas |
number |
river |
River |
number |
sun |
Solar |
number |
total |
Total |
number |
wasteheat |
Waste Heat |
number |
wind |
Wind |
number |
6.386. RealtimeGenerationExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
powerPlantId |
Powerplant id |
integer (int64) |
startDate |
Date value formatted like |
string (date-time) |
6.387. RealtimeGenerationRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
powerPlantId |
Powerplant id |
integer (int64) |
startDate |
Date value formatted like |
string (date-time) |
6.388. RealtimeGenerationResponseDto
Name | Schema |
---|---|
items |
< RealTimeGenerationDto > array |
page |
|
totals |
6.389. RealtimeGenerationStatisticsDto
Name | Schema |
---|---|
asphaltiteCoalTotal |
number |
biomassTotal |
number |
blackCoalTotal |
number |
dammedHydroTotal |
number |
fueloilTotal |
number |
gasOilTotal |
number |
geothermalTotal |
number |
importCoalTotal |
number |
importExportTotal |
number |
ligniteTotal |
number |
lngTotal |
number |
naphtaTotal |
number |
naturalGasTotal |
number |
nuclearTotal |
number |
riverTotal |
number |
sunTotal |
number |
totalTotal |
number |
wasteheatTotal |
number |
windTotal |
number |
6.390. RegionDto
Name | Description | Schema |
---|---|---|
regionId |
Region ID(See Region Listing Service) |
integer (int64) |
regionShortName |
Region Short Name |
string |
6.391. RegionResponseDto
Name | Schema |
---|---|
items |
< RegionDto > array |
6.392. RenewableLicencedGenerationAmountExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.393. RenewableLicencedGenerationAmountRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.394. RenewableLicencedGenerationAmountResponseDataDto
Name | Description | Schema |
---|---|---|
biyogaz |
Biogas(MWh) |
number |
biyokutle |
Biomass |
number |
copGazi |
Land Fill Gas(MWh) |
number |
date |
Date value formatted like |
string (date-time) |
diger |
Other(MWh) |
number |
gunes |
Solar |
number |
hour |
Hour Data. |
string (date-time) |
jeotermal |
Geothermal |
number |
kanalTipi |
Canal Type(MWh) |
number |
nehirTipi |
River |
number |
rezervuarli |
Dammed Hydro With Reservoir(MWh) |
number |
ruzgar |
Wind |
number |
toplam |
Total |
number |
6.395. RenewableLicencedGenerationAmountResponseDto
Name | Schema |
---|---|
items |
|
page |
6.396. RenewableResGenerationAndForecastDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
forecast |
Forecast(MW) |
number |
generation |
Generation(MW) |
number |
quarter1 |
Q5 |
number |
quarter2 |
Q25 |
number |
quarter3 |
Q75 |
number |
quarter4 |
Q95 |
number |
time |
Date value formatted like |
string (date-time) |
6.397. RenewableResGenerationAndForecastExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.398. RenewableResGenerationAndForecastRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.399. RenewableResGenerationAndForecastResponseDto
Name | Schema |
---|---|
items |
< RenewableResGenerationAndForecastDataDto > array |
page |
6.400. RenewableSmForecastExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.401. RenewableSmForecastRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.402. RenewableSmForecastResponseDataDto
Name | Description | Schema |
---|---|---|
biyogaz |
Biogas (MWh) |
number |
biyokutle |
Biomass(MWh) |
number |
copGazi |
Land Fill Gas (MWh) |
number |
date |
Transfer Date |
string (date-time) |
geothermal |
Jeotermal (MWh) |
number |
kanalTipi |
Canal Type(MWh) |
number |
nehirTipi |
River (MWh) |
number |
rezervuarli |
Reservoir (MWh) |
number |
ruzgar |
Wind(MWh) |
number |
time |
Date value formatted like |
string (date-time) |
toplam |
Total Cost (MWh) |
number |
6.403. RenewableSmForecastResponseDto
Name | Schema |
---|---|
items |
< RenewableSmForecastResponseDataDto > array |
page |
6.404. RenewableSmSpotOrderDataDto
Name | Description | Schema |
---|---|---|
date |
Transfer Date |
string (date-time) |
orderQuantity |
Spot Orders (MWh) |
number |
time |
Date value formatted like |
string (date-time) |
6.405. RenewableSmSpotOrderExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.406. RenewableSmSpotOrderRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.407. RenewableSmSpotOrderResponseDto
Name | Schema |
---|---|
items |
< RenewableSmSpotOrderDataDto > array |
page |
6.408. RenewableSmUnitCostDataDto
Name | Description | Schema |
---|---|---|
period |
Period |
string (date-time) |
ptf |
Weighted Average MCP |
number |
supplierUnitCost |
Supplier Unit Cost (TL/MWh) |
number |
unitCost |
GTÅž-K1 Unit Cost (TL/MWh) |
number |
version |
Version |
string (date-time) |
6.409. RenewableSmUnitCostExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.410. RenewableSmUnitCostRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.411. RenewableSmUnitCostResponseDto
Name | Schema |
---|---|
items |
< RenewableSmUnitCostDataDto > array |
page |
6.412. RenewableUnlicencedGenerationAmountExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.413. RenewableUnlicencedGenerationAmountRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.414. RenewableUnlicencedGenerationAmountResponseDataDto
Name | Description | Schema |
---|---|---|
biyogaz |
Biogas(MWh) |
number |
biyokutle |
Biomass(MWh) |
number |
date |
Date value formatted like |
string (date-time) |
diger |
Other(MWh) |
number |
gunes |
Solar(MWh) |
number |
kanalTipi |
Canal Type(MWh) |
number |
ruzgar |
Wind(MWh) |
number |
time |
Date value formatted like |
string (date-time) |
toplam |
Total (MWh) |
number |
6.415. RenewableUnlicencedGenerationAmountResponseDto
Name | Schema |
---|---|
items |
|
page |
|
statisticsDto |
6.416. RenewableUnlicencedGenerationAmountResponseStatisticsDto
Name | Schema |
---|---|
total |
number |
6.417. RenewablesParticipantExportRequestDto
Name | Description | Schema |
---|---|---|
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
year |
Year |
number |
6.418. RenewablesParticipantRequestDto
Name | Description | Schema |
---|---|---|
page |
Paging Details |
|
year |
Year |
number |
6.419. RenewablesParticipantResponseDataDto
Name | Description | Schema |
---|---|---|
entryDate |
Start Date |
string (date-time) |
facilityName |
Unit Name |
string |
facilityType |
Unit Type |
string |
installedPower |
Installed Capacity (MWe) |
number |
lastYearGenerationAmount |
Previous Year Generation Amount (MWh) |
number |
latestUtilizationPeriod |
End Date (Year) |
integer (int64) |
licencedYearlyGenerationAmount |
Annual Production Amount Given to the License (MWh) |
number |
orgName |
Organization Name |
string |
unitCount |
Unit Number (Qty) |
integer (int64) |
utilizationPeriod |
Utilization Period |
integer (int64) |
yekPrice |
RSM Price |
number |
6.420. RenewablesParticipantResponseDto
Name | Schema |
---|---|
items |
< RenewablesParticipantResponseDataDto > array |
page |
|
statisticsDto |
6.421. RestResponse
Name | Description | Schema |
---|---|---|
body |
Rest Response Body |
|
clientIp |
Client Ip |
string |
correlationId |
Transaction Id |
string |
dispatch |
string |
|
errors |
Error |
< RestResponseError > array |
hostName |
string |
|
spanIds |
string |
|
status |
Status |
string |
successMessage |
string |
|
unsuccessfulList |
Unsuccessful List |
< BaseDTO > array |
userName |
Username |
string |
6.422. RestResponseBody
Name | Schema |
---|---|
content |
object |
6.423. RestResponseBodyBooleanDTO
Name | Schema |
---|---|
content |
6.424. RestResponseBodyObject
Name | Schema |
---|---|
content |
object |
6.425. RestResponseBodySupplyDemandMcpChartDataResponseDto
Name | Schema |
---|---|
content |
6.426. RestResponseBooleanDTO
Name | Description | Schema |
---|---|---|
body |
Rest Response Body |
|
clientIp |
Client Ip |
string |
correlationId |
Transaction Id |
string |
dispatch |
string |
|
errors |
Error |
< RestResponseError > array |
hostName |
string |
|
spanIds |
string |
|
status |
Status |
string |
successMessage |
string |
|
unsuccessfulList |
Unsuccessful List |
< BaseDTO > array |
userName |
Username |
string |
6.427. RestResponseError
Name | Description | Schema |
---|---|---|
errorCode |
Error Code |
string |
errorMessage |
Error Message |
string |
6.428. RestResponseSupplyDemandMcpChartDataResponseDto
Name | Description | Schema |
---|---|---|
body |
Rest Response Body |
|
clientIp |
Client Ip |
string |
correlationId |
Transaction Id |
string |
dispatch |
string |
|
errors |
Error |
< RestResponseError > array |
hostName |
string |
|
spanIds |
string |
|
status |
Status |
string |
successMessage |
string |
|
unsuccessfulList |
Unsuccessful List |
< BaseDTO > array |
userName |
Username |
string |
6.429. RetroactiveAdjustmentSumDataDto
Name | Description | Schema |
---|---|---|
gddkCreditAmount |
Retroactive Adjustment Sum Recievable (TL) |
number |
gddkDebtAmount |
Retroactive Adjustment Sum Liability (TL) |
number |
gddkNetAmount |
Net Retroactive Adjustment Sum (TL) |
number |
period |
Date value formatted like |
string (date-time) |
version |
Date value formatted like |
string (date-time) |
6.430. RetroactiveAdjustmentSumExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.431. RetroactiveAdjustmentSumRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.432. RetroactiveAdjustmentSumResponseDto
Name | Schema |
---|---|
items |
< RetroactiveAdjustmentSumDataDto > array |
page |
|
statistics |
6.433. RetroactiveAdjustmentSumStatisticsDto
Name | Schema |
---|---|
gddkCreditAmountTotal |
number |
gddkDebtAmountTotal |
number |
gddkNetAmountTotal |
number |
6.434. SecondaryFrequencyCapacityAmountDataDto
Name | Description | Schema |
---|---|---|
amount |
Frequency Capacity Price |
number |
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
integer (int32) |
6.435. SecondaryFrequencyCapacityAmountResponseDto
Name | Schema |
---|---|
items |
< SecondaryFrequencyCapacityAmountDataDto > array |
page |
|
statistics |
6.436. SecondaryFrequencyCapacityPriceDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
integer (int32) |
price |
Frequency Capacity Amount |
number |
6.437. SecondaryFrequencyCapacityPriceResponseDto
Name | Schema |
---|---|
items |
< SecondaryFrequencyCapacityPriceDataDto > array |
page |
|
statistics |
6.438. SidePaymentDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
originatingFromBids |
Originating From Bids (TL) |
number |
originatingFromOffers |
Originating From Offers (TL) |
number |
originatingFromRounding |
Originating From Rounding (TL) |
number |
total |
Total |
number |
6.439. SidePaymentExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.440. SidePaymentRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.441. SidePaymentResponseDto
Name | Schema |
---|---|
items |
< SidePaymentDataDto > array |
page |
|
statistics |
6.442. SidePaymentStatisticsDto
Name | Schema |
---|---|
originatingFromBidsTotal |
number |
originatingFromOffersTotal |
number |
originatingFromRoundingTotal |
number |
total |
number |
6.443. SortDTO
Name | Description | Schema |
---|---|---|
direction |
Sort direction (ASC or DESC) |
enum (ASC, DESC) |
field |
Custom sorting field name |
string |
6.444. StAdediDataDto
Name | Description | Schema |
---|---|---|
period |
Period |
string (date-time) |
profilAboneGrup |
Profile Group |
string |
stAdedi |
Quantity of Consumers Using Eligible Consumer Rights |
integer (int64) |
stOlmayanAboneAdedi |
Quantity of Consumers Not Using Eligible Consumer Rights |
integer (int64) |
6.445. StAdediExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.446. StAdediRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.447. StAdediResponseDto
Name | Schema |
---|---|
items |
< StAdediDataDto > array |
page |
6.448. StUecmDataDto
Name | Description | Schema |
---|---|---|
hour |
Hour Data. |
string (date-time) |
period |
Period |
string (date-time) |
st |
Withdrawal Quantity of Exercising Privilege of Eligibility (MWh) |
number |
6.449. StUecmExportRequestDto
Name | Description | Schema |
---|---|---|
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
6.450. StUecmRequestDto
Name | Description | Schema |
---|---|---|
page |
Paging Details |
|
period |
Date value formatted like |
string (date-time) |
6.451. StUecmResponseDto
Name | Schema |
---|---|
items |
< StUecmDataDto > array |
page |
6.452. SubmittedBidOrderVolumeDataDto
Name | Description | Schema |
---|---|---|
bidQuantity |
Bid Quantity (MWh) |
number |
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
6.453. SubmittedBidOrderVolumeExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.454. SubmittedBidOrderVolumeRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.455. SubmittedBidOrderVolumeResponseDto
Name | Schema |
---|---|
items |
< SubmittedBidOrderVolumeDataDto > array |
page |
|
statistics |
6.456. SubmittedBidOrderVolumeStatisticsDto
Name | Schema |
---|---|
bidQuantityTotal |
number |
6.457. SubmittedSalesOrderVolumeDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
offerQuantity |
Offer Quantity (MWh) |
number |
6.458. SubmittedSalesOrderVolumeExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.459. SubmittedSalesOrderVolumeRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.460. SubmittedSalesOrderVolumeResponseDto
Name | Schema |
---|---|
items |
< SubmittedSalesOrderVolumeDataDto > array |
page |
|
statistics |
6.461. SubmittedSalesOrderVolumeStatisticsDto
Name | Schema |
---|---|
offerQuantityTotal |
number |
6.462. SubscriberProfileGroup
Name | Schema |
---|---|
id |
integer (int64) |
name |
string |
6.463. SubscriberProfileGroupRequestDto
Name | Description | Schema |
---|---|---|
distributionId |
Distribution Firm ID |
integer (int64) |
period |
Date value formatted like |
string (date-time) |
6.464. SupplyDemandChartDataDto
Name | Description | Schema |
---|---|---|
amount |
Amount |
number (double) |
demandPrice |
Demand Price |
number (double) |
supplyPrice |
Supply Price |
number (double) |
6.465. SupplyDemandChartDataResponseDto
Name | Schema |
---|---|
items |
< SupplyDemandChartDataDto > array |
6.466. SupplyDemandDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
demand |
Demand(MWh) |
number (double) |
price |
Price(TL/MWh) |
number (double) |
supply |
Supply(MWh) |
number (double) |
6.467. SupplyDemandExportRequestDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
6.468. SupplyDemandMcpChartDataDto
Name | Schema |
---|---|
date |
string (date-time) |
matchingQuantity |
number |
mcpPrice |
number |
6.469. SupplyDemandMcpChartDataRequestDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
6.470. SupplyDemandMcpChartDataResponseDto
Name | Schema |
---|---|
response |
6.471. SupplyDemandRequestDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
page |
Paging Details |
6.472. SupplyDemandResponseDto
Name | Schema |
---|---|
items |
< SupplyDemandDataDto > array |
page |
6.473. SwvExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.474. SwvRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.475. SwvResponseDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
wqusl |
Withdrawal Quantity Under Supply Liability |
number |
6.476. SystemDirectionDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
smpDirectionId |
integer (int64) |
|
systemDirection |
Market Trade Value |
string |
6.477. SystemDirectionExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.478. SystemDirectionRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.479. SystemDirectionResponseDto
Name | Schema |
---|---|
items |
< SystemDirectionDataDto > array |
page |
6.480. SystemMarginalPriceDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string (date-time) |
systemMarginalPrice |
System Marginal Price (TL/MWh) |
number |
6.481. SystemMarginalPriceExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.482. SystemMarginalPriceRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.483. SystemMarginalPriceResponseDto
Name | Schema |
---|---|
items |
< SystemMarginalPriceDataDto > array |
page |
|
statistics |
6.484. SystemMarginalPriceStatisticsDto
Name | Schema |
---|---|
smpArithmeticalAverage |
number |
6.485. TcatPreMonthForecastDataDto
Name | Description | Schema |
---|---|---|
alloc |
Allocated Capacity for SEECAO/TEÄ°AÅž |
number |
atc |
Available Capacity for SEECAO/TEÄ°AÅž |
number |
connType |
Connection Method |
string |
direction |
Direction |
string |
ntc |
Net Transfer Capacity |
number |
transferEnd |
To |
string (date-time) |
transferStart |
From |
string (date-time) |
6.486. TcatPreMonthForecastExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.487. TcatPreMonthForecastRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.488. TcatPreMonthForecastResponseDto
Name | Schema |
---|---|
items |
< TcatPreMonthForecastDataDto > array |
page |
6.489. TcatPreYearForecastDataDto
Name | Description | Schema |
---|---|---|
ac |
Allocated Capacity(MW) |
number |
atc |
Available Capacity(MW) |
number |
connType |
Connection Method |
string |
endsAt |
To |
string (date-time) |
ntc |
Net Transfer Capacity(MW) |
number |
startsAt |
From |
string (date-time) |
td |
Direction |
string |
6.490. TcatPreYearForecastExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.491. TcatPreYearForecastRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.492. TcatPreYearForecastResponseDto
Name | Schema |
---|---|
items |
< TcatPreYearForecastDataDto > array |
page |
6.493. ThDeliveryPeriodRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
startDate |
Date value formatted like |
string (date-time) |
6.494. ThDeliveryPeriodResponseDto
Name | Schema |
---|---|
items |
< LabelValueDTO > array |
6.495. TradeValueDataDto
Name | Description | Schema |
---|---|---|
kontratAdi |
Contrat Name; |
string |
kontratTuru |
Contrat Type; |
string |
tradingVolume |
Trade Value (TL); |
number |
6.496. TradeValueExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.497. TradeValueRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.498. TradeValueResponseDto
Name | Schema |
---|---|
items |
< TradeValueDataDto > array |
page |
|
statistics |
6.499. TradeValueStatisticsDto
Name | Schema |
---|---|
tradingVolumeTotal |
number |
6.500. TradeVolumeDataDto
Name | Description | Schema |
---|---|---|
contractName |
Contrat Name |
string |
date |
Date value formatted like |
string (date-time) |
ozelIslemBildirimHacmi |
Trade Registration Value |
number |
total |
Total Trade Value |
number |
volume |
Market Trade Value |
number |
6.501. TradeVolumeExportRequestDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
Delivery Period |
string |
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
loadType |
Load Type |
string |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
year |
Year |
integer (int64) |
6.502. TradeVolumeRequestDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
Delivery Period |
string |
endDate |
Date value formatted like |
string (date-time) |
loadType |
Load Type |
string |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
year |
Year |
integer (int64) |
6.503. TradeVolumeResponseDto
Name | Schema |
---|---|
items |
< TradeVolumeDataDto > array |
page |
|
statistics |
6.504. TradeVolumeStatisticsDto
Name | Schema |
---|---|
ozelIslemBildirimHacmiTotal |
number |
totalSum |
number |
volumeTotal |
number |
6.505. TransactionHistoryDataDto
Name | Description | Schema |
---|---|---|
contractName |
Contrat Name |
string |
date |
Date value formatted like |
string (date-time) |
matchTime |
Hour Data. |
string |
matchingPrice |
Matching Price (TL/MWh) |
number |
matchingQuantity |
Matching Quantity (Lot) |
number |
total |
Total(MWh) |
number |
transactionType |
Transaction Type |
string |
6.506. TransactionHistoryExportRequestDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
Delivery Period |
string |
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
loadType |
Load Type |
string |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
year |
Year |
string |
6.507. TransactionHistoryGipDataDto
Name | Description | Schema |
---|---|---|
contractName |
Contrat Name; |
string |
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
id |
Id |
integer (int64) |
price |
Price (TL/MWh) |
number |
quantity |
Quantity (Lot) |
number |
6.508. TransactionHistoryGipExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.509. TransactionHistoryGipRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.510. TransactionHistoryGipResponseDto
Name | Schema |
---|---|
items |
< TransactionHistoryGipDataDto > array |
page |
6.511. TransactionHistoryRequestDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
Delivery Period |
string |
endDate |
Date value formatted like |
string (date-time) |
loadType |
Load Type |
string |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
year |
Year |
string |
6.512. TransactionHistoryResponseDto
Name | Schema |
---|---|
items |
< TransactionHistoryDataDto > array |
page |
|
statistics |
6.513. TransactionHistoryStatisticsDto
Name | Schema |
---|---|
matchingPriceTotal |
number |
matchingQuantityTotal |
number |
totalSum |
number |
6.514. UecmDataDto
Name | Description | Schema |
---|---|---|
hour |
Hour Data. |
string (date-time) |
period |
Period |
string (date-time) |
swv |
Withdrawal Quantity of Exercising Privilege of Eligibility (MWh) |
number |
6.515. UecmExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.516. UecmRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.517. UecmResponseDto
Name | Schema |
---|---|
items |
< UecmDataDto > array |
page |
6.518. UevcbDto
Name | Description | Schema |
---|---|---|
eic |
Injection/Withdrawal Unit name EIC(ETSO) code |
string |
id |
Injection/Withdrawal Unit Id(see: Injection/Withdrawal Unit Listing Service) |
integer (int64) |
name |
Injection/Withdrawal Unit name |
string |
6.519. UevcbListRequestDto
Name | Description | Schema |
---|---|---|
organizationId |
Organization Id(see: Organization Listing Service) |
integer (int64) |
startDate |
Date value formatted like |
string (date-time) |
6.520. UevcbRequestDto
Name | Description | Schema |
---|---|---|
powerPlantId |
Powerplant id |
integer (int64) |
startDate |
Date value formatted like |
string (date-time) |
6.521. UevcbResponseDto
Name | Schema |
---|---|
items |
< UevcbDto > array |
6.522. UmmTypeDataDto
Name | Description | Schema |
---|---|---|
id |
Message Type Id(See:Market Message System Message Type List Service) |
integer (int64) |
typeName |
Message Type Name |
string |
6.523. UmmTypeResponseDto
Name | Schema |
---|---|
items |
< UmmTypeDataDto > array |
6.524. VepMatchingQuantityDataDto
Name | Description | Schema |
---|---|---|
basePriceBiddingQuantity |
Basis Price Auction Quantity (Lot) |
number |
dailyIndexPriceBiddingQuantity |
DIP Auction Quantity (Lot) |
number |
date |
Date value formatted like |
string (date-time) |
defaultBiddingQuantity |
Default Auction Quantity (Lot) |
number |
kontratAdi |
Contract Name |
string |
marketMatchingQuantity |
Market Matching Quantity (Lot) |
number |
privateOperationQuantity |
Trade Registration Quantity (Lot) |
number |
syntheticBuyMatchingQuantity |
Sentetic Buy Matching Quantity (Lot) |
number |
syntheticSellMatchingQuantity |
Sentetic Sell Matching Quantity (Lot) |
number |
total |
Total(MWh) |
number |
6.525. VepMatchingQuantityExportRequestDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
Delivery Period |
string |
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
loadType |
Load Type |
string |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
year |
Year |
integer (int64) |
6.526. VepMatchingQuantityRequestDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
Delivery Period |
string |
endDate |
Date value formatted like |
string (date-time) |
loadType |
Load Type |
string |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
year |
Year |
integer (int64) |
6.527. VepMatchingQuantityResponseDto
Name | Schema |
---|---|
items |
< VepMatchingQuantityDataDto > array |
page |
|
statistics |
6.528. VepMatchingQuantityStatisticsDto
Name | Schema |
---|---|
basePriceBiddingQuantity |
number |
dailyIndexPriceBiddingQuantity |
number |
defaultBiddingQuantity |
number |
marketMatchingQuantity |
number |
privateOperationQuantity |
number |
syntheticBuyMatchingQuantity |
number |
syntheticSellMatchingQuantity |
number |
total |
number |
6.529. VepOfferPriceDataDto
Name | Description | Schema |
---|---|---|
bestBuyPrice |
Best Bid Price (TL/MWh) |
number |
bestSellPrice |
Best Ask Price (TL/MWh) |
number |
contractName |
Contract Name |
string |
deliveryPeriod |
Delivery Period |
string |
fdo |
Change Rate by Last Match Price% |
string |
lastMatchPrice |
Last Matching Price (TL/MWh) |
number |
6.530. VepOfferPriceExportRequestDto
Name | Description | Schema |
---|---|---|
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
6.531. VepOfferPriceReponseDto
Name | Schema |
---|---|
items |
< VepOfferPriceDataDto > array |
page |
|
statistics |
6.532. VepOfferPriceRequestDto
Name | Description | Schema |
---|---|---|
page |
Paging Details |
6.533. VepOpenPositionDataDto
Name | Description | Schema |
---|---|---|
contractName |
Contract Name |
string |
date |
Date value formatted like |
string (date-time) |
openPosition |
Open Position Quantity(Lot) |
number |
6.534. VepOpenPositionExportRequestDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
Delivery Period |
string |
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
loadType |
Load Type |
string |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
year |
Year |
integer (int64) |
6.535. VepOpenPositionRequestDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
Delivery Period |
string |
endDate |
Date value formatted like |
string (date-time) |
loadType |
Load Type |
string |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
year |
Year |
integer (int64) |
6.536. VepOpenPositionResponseDto
Name | Schema |
---|---|
items |
< VepOpenPositionDataDto > array |
page |
|
statistics |
6.537. VepOpenPositionStatisticsDto
Name | Schema |
---|---|
openPositionTotal |
number |
6.538. View
Name | Schema |
---|---|
contentType |
string |
6.539. VolumeDataDto
Name | Description | Schema |
---|---|---|
basinName |
Basin |
string |
damName |
Dam |
string |
date |
Date value formatted like |
string (date-time) |
id |
Dam Id |
number |
maxVolume |
Maximum Volume |
number |
minVolume |
Minimum Volume |
number |
6.540. VolumeResponseDto
Name | Schema |
---|---|
items |
< VolumeDataDto > array |
page |
6.541. WaterEnergyProvisionDataDto
Name | Description | Schema |
---|---|---|
basinName |
Basin |
string |
damId |
Dam Id |
integer (int64) |
damName |
Dam |
string |
date |
Date value formatted like |
string (date-time) |
energyGeneration |
Water Energy Provision (MWh) |
number |
6.542. WaterEnergyProvisionExportRequestDto
Name | Description | Schema |
---|---|---|
basinName |
Basin |
string |
damName |
Dam |
string |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
6.543. WaterEnergyProvisionRequestDto
Name | Description | Schema |
---|---|---|
basinName |
Basin |
string |
damName |
Dam |
string |
page |
Paging Details |
6.544. WaterEnergyProvisionResponseDto
Name | Schema |
---|---|
items |
< WaterEnergyProvisionDataDto > array |
page |
6.545. WeightedAveragePriceDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
hour |
Hour Data. |
string |
wap |
Weighted Average Price |
number |
6.546. WeightedAveragePriceExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.547. WeightedAveragePriceRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.548. WeightedAveragePriceResponseDto
Name | Schema |
---|---|
items |
< WeightedAveragePriceDataDto > array |
page |
6.549. WithdrawalQuantityDataDto
Name | Description | Schema |
---|---|---|
biomassAmount |
Biomass (MWh) |
number |
date |
Date value formatted like |
string (date-time) |
geothermalAmount |
Geothermal (MWh) |
number |
hydroPowerAmount |
Hydro (MWh) |
number |
solarAmount |
Solar (MWh) |
number |
totalAmount |
Total (MWh) |
number |
windAmount |
Wind (MWh) |
number |
6.550. WithdrawalQuantityExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.551. WithdrawalQuantityRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.552. WithdrawalQuantityResponseDto
Name | Schema |
---|---|
items |
< WithdrawalQuantityDataDto > array |
page |
|
statistics |
6.553. WithdrawalQuantityStatisticsDto
Name | Schema |
---|---|
biomassAmountTotal |
number |
geothermalAmountTotal |
number |
hydroPowerAmountTotal |
number |
solarAmountTotal |
number |
totalAmountTotal |
number |
windAmountTotal |
number |
6.554. WquslResponseDataDto
Name | Schema |
---|---|
items |
< SwvResponseDataDto > array |
page |
6.555. YekdemLuyExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.556. YekdemLuyRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.557. YekdemLuyResponseDataDto
Name | Description | Schema |
---|---|---|
biyogaz |
Biogas(TL) |
number |
biyokutle |
Biomass(TL) |
number |
date |
Date value formatted like |
string (date-time) |
diger |
Other(TL) |
number |
gunes |
Solar(TL) |
number |
kanalTipi |
Canal Type(TL) |
number |
ruzgar |
Wind(TL) |
number |
toplam |
Total License Exempt Generation Feed-In Cost (TL) |
number |
6.558. YekdemLuyResponseDto
Name | Schema |
---|---|
items |
< YekdemLuyResponseDataDto > array |
page |
|
statisticsDto |
6.559. YekdemLuyResponseStatisticsDto
Name | Schema |
---|---|
biyogaz |
number |
biyokutle |
number |
diger |
number |
gunes |
number |
kanalTipi |
number |
ruzgar |
number |
toplam |
number |
6.560. YekdemYekGeliriExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.561. YekdemYekGeliriRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.562. YekdemYekGeliriResponseDataDto
Name | Description | Schema |
---|---|---|
biyogaz |
Biogas (TL) |
number |
biyokutle |
Biomass(TL) |
number |
copGazi |
Land Fill Gas (TL) |
number |
date |
Transfer Date |
string (date-time) |
diger |
Other(TL) |
number |
geothermal |
Jeotermal (TL) |
number |
gunes |
Solar(TL) |
number |
kanalTipi |
Canal Type(TL) |
number |
nehirTipi |
River (TL) |
number |
rezervuarli |
Reservoir (TL) |
number |
ruzgar |
Wind(TL) |
number |
time |
Date value formatted like |
string (date-time) |
toplam |
Total Income (TL) |
number |
6.563. YekdemYekGeliriResponseDto
Name | Schema |
---|---|
items |
< YekdemYekGeliriResponseDataDto > array |
page |
|
statisticsDto |
6.564. YekdemYekGeliriResponseStatisticsDto
Name | Schema |
---|---|
biyogaz |
number |
biyokutle |
number |
copGazi |
number |
diger |
number |
geothermal |
number |
gunes |
number |
kanalTipi |
number |
nehirTipi |
number |
rezervuarli |
number |
ruzgar |
number |
toplam |
number |
6.565. YekdemYekbedExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.566. YekdemYekbedRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
region |
Region short name(i.e: TR1 see: Region Listing Service ) |
string |
startDate |
Date value formatted like |
string (date-time) |
6.567. YekdemYekbedResponseDataDto
Name | Description | Schema |
---|---|---|
biyogaz |
Biogas (TL) |
number |
biyokutle |
Biomass(TL) |
number |
copGazi |
Land Fill Gas (TL) |
number |
date |
Transfer Date |
string (date-time) |
diger |
Other(TL) |
number |
geothermal |
Jeotermal (TL) |
number |
gunes |
Solar(TL) |
number |
kanalTipi |
Canal Type(TL) |
number |
nehirTipi |
River (TL) |
number |
rezervuarli |
Reservoir (TL) |
number |
ruzgar |
Wind(TL) |
number |
time |
Date value formatted like |
string (date-time) |
toplam |
Total Cost (Licensed) TL |
number |
6.568. YekdemYekbedResponseDto
Name | Schema |
---|---|
items |
< YekdemYekbedResponseDataDto > array |
page |
|
statisticsDto |
6.569. YekdemYekbedResponseStatisticsDto
Name | Schema |
---|---|
biyogaz |
number |
biyokutle |
number |
copGazi |
number |
diger |
number |
geothermal |
number |
gunes |
number |
kanalTipi |
number |
nehirTipi |
number |
rezervuarli |
number |
ruzgar |
number |
toplam |
number |
6.570. YekdemYektobExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.571. YekdemYektobRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.572. YekdemYektobResponseDataDto
Name | Description | Schema |
---|---|---|
biyogaz |
Biogas (TL) |
number |
biyokutle |
Biomass(TL) |
number |
copGazi |
Land Fill Gas (TL) |
number |
date |
Transfer Date |
string (date-time) |
diger |
Other(TL) |
number |
geothermal |
Jeotermal (TL) |
number |
gunes |
Solar(TL) |
number |
kanalTipi |
Canal Type(TL) |
number |
nehirTipi |
River (TL) |
number |
rezervuarli |
Reservoir (TL) |
number |
ruzgar |
Wind(TL) |
number |
toplam |
Total Cost (Licensed & License Exempt)(TL) |
number |
6.573. YekdemYektobResponseDto
Name | Schema |
---|---|
items |
< YekdemYektobResponseDataDto > array |
page |
|
statisticsDto |
6.574. YekdemYektobResponseStatisticsDto
Name | Schema |
---|---|
biyogaz |
number |
biyokutle |
number |
copGazi |
number |
diger |
number |
geothermal |
number |
gunes |
number |
kanalTipi |
number |
nehirTipi |
number |
rezervuarli |
number |
ruzgar |
number |
toplam |
number |
6.575. YekgExportedDocumentQuantityDataDto
Name | Description | Schema |
---|---|---|
biomassAmount |
Biomass (MWh) |
number |
date |
Date value formatted like |
string (date-time) |
geothermalAmount |
Geothermal (MWh) |
number |
hydroPowerAmount |
Hydro (MWh) |
number |
solarAmount |
Solar (MWh) |
number |
totalAmount |
Total (MWh) |
number |
windAmount |
Wind (MWh) |
number |
6.576. YekgExportedDocumentQuantityExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.577. YekgExportedDocumentQuantityRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.578. YekgExportedDocumentQuantityResponseDto
Name | Schema |
---|---|
items |
< YekgExportedDocumentQuantityDataDto > array |
page |
|
statistics |
6.579. YekgExportedDocumentQuantityStatisticsDto
Name | Schema |
---|---|
biomassAmountTotal |
number |
geothermalAmountTotal |
number |
hydroPowerAmountTotal |
number |
solarAmountTotal |
number |
totalAmountTotal |
number |
windAmountTotal |
number |
6.580. YekgMatchAmountDataDto
Name | Description | Schema |
---|---|---|
biomassAmount |
Biomass (MWh) |
number |
date |
Date value formatted like |
string (date-time) |
geothermalAmount |
Geothermal (MWh) |
number |
hydroPowerAmount |
Hydro (MWh) |
number |
solarAmount |
Solar (MWh) |
number |
totalAmount |
Total (MWh) |
number |
windAmount |
Wind (MWh) |
number |
6.581. YekgMatchAmountExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.582. YekgMatchAmountRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.583. YekgMatchAmountResponseDto
Name | Schema |
---|---|
items |
< YekgMatchAmountDataDto > array |
page |
|
statistics |
6.584. YekgMatchAmountStatisticsDto
Name | Schema |
---|---|
biomassAmountTotal |
number |
geothermalAmountTotal |
number |
hydroPowerAmountTotal |
number |
solarAmountTotal |
number |
totalAmountTotal |
number |
windAmountTotal |
number |
6.585. YekgMinMaxMatchAmountDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
maxMatchPrice |
Min. Matching Price (TL/MWh) |
number |
minMatchPrice |
Max. Matching Price (TL/MWh) |
number |
resourceType |
Source Type |
string |
6.586. YekgMinMaxMatchAmountExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.587. YekgMinMaxMatchAmountRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.588. YekgMinMaxMatchAmountResponseDto
Name | Schema |
---|---|
items |
< YekgMinMaxMatchAmountDataDto > array |
page |
|
statistics |
6.589. YekgMinMaxMatchAmountStatisticsDto
Name | Schema |
---|---|
totalMaxMatchPrice |
number |
totalMinMatchPrice |
number |
6.590. YekgOrderQuantityDataDto
Name | Description | Schema |
---|---|---|
alisTeklifMiktari |
Max. Matching Price (TL/MWh) |
number |
date |
Date value formatted like |
string (date-time) |
resourceType |
Source Type |
string |
satisTeklifMiktari |
Min. Matching Price (TL/MWh) |
number |
6.591. YekgOrderQuantityExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.592. YekgOrderQuantityRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.593. YekgOrderQuantityResponseDto
Name | Schema |
---|---|
items |
< YekgOrderQuantityDataDto > array |
page |
|
statistics |
6.594. YekgOrderQuantityStatisticsDto
Name | Schema |
---|---|
totalalisTeklifMiktari |
number |
totalsatisTeklifMiktari |
number |
6.595. YekgRedemptionAmountDataDto
Name | Description | Schema |
---|---|---|
biomassAmount |
Biomass (MWh) |
number |
date |
Date value formatted like |
string (date-time) |
geothermalAmount |
Geothermal (MWh) |
number |
hydroPowerAmount |
Hydro (MWh) |
number |
solarAmount |
Solar (MWh) |
number |
totalAmount |
Total (MWh) |
number |
windAmount |
Wind (MWh) |
number |
6.596. YekgRedemptionAmountExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.597. YekgRedemptionAmountRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.598. YekgRedemptionAmountResponseDto
Name | Schema |
---|---|
items |
< YekgRedemptionAmountDataDto > array |
page |
|
statistics |
6.599. YekgRedemptionAmountStatisticsDto
Name | Schema |
---|---|
biomassAmountTotal |
number |
geothermalAmountTotal |
number |
hydroPowerAmountTotal |
number |
solarAmountTotal |
number |
totalAmountTotal |
number |
windAmountTotal |
number |
6.600. YekgRepealAmountDataDto
Name | Description | Schema |
---|---|---|
biomassAmount |
Biomass (MWh) |
number |
date |
Date value formatted like |
string (date-time) |
geothermalAmount |
Geothermal (MWh) |
number |
hydroPowerAmount |
Hydro (MWh) |
number |
solarAmount |
Solar (MWh) |
number |
totalAmount |
Total (MWh) |
number |
windAmount |
Wind (MWh) |
number |
6.601. YekgRepealAmountExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.602. YekgRepealAmountRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.603. YekgRepealAmountResponseDto
Name | Schema |
---|---|
items |
< YekgRepealAmountDataDto > array |
page |
|
statistics |
6.604. YekgRepealAmountStatisticsDto
Name | Schema |
---|---|
biomassAmountTotal |
number |
geothermalAmountTotal |
number |
hydroPowerAmountTotal |
number |
solarAmountTotal |
number |
totalAmountTotal |
number |
windAmountTotal |
number |
6.605. YekgTradingVolumeDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
resourceType |
Source Type |
string |
volumeEuro |
Trade Value (EUR) |
number |
volumeTl |
Trade Value (TL) |
number |
volumeUsd |
Trade Value (USD) |
number |
6.606. YekgTradingVolumeExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.607. YekgTradingVolumeRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.608. YekgTradingVolumeResponseDto
Name | Schema |
---|---|
items |
< YekgTradingVolumeDataDto > array |
lastUpdateDate |
string (date-time) |
page |
|
statistics |
6.609. YekgTradingVolumeStatisticsDto
Name | Schema |
---|---|
totalVolumeEuro |
number |
totalVolumeTl |
number |
totalVolumeUsd |
number |
6.610. YekgWeightedAveragePriceDataDto
Name | Description | Schema |
---|---|---|
aofEuro |
Weighted Average Price (EUR/MWh) |
number |
aofTl |
Weighted Average Price (TL/MWh) |
number |
aofUsd |
Weighted Average Price (USD/MWh) |
number |
date |
Date value formatted like |
string (date-time) |
resourceType |
Source Type |
string |
6.611. YekgWeightedAveragePriceExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.612. YekgWeightedAveragePriceRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.613. YekgWeightedAveragePriceResponseDto
Name | Schema |
---|---|
items |
< YekgWeightedAveragePriceDataDto > array |
page |
|
statistics |
6.614. YekgWeightedAveragePriceStatisticsDto
Name | Schema |
---|---|
totalAofEuro |
number |
totalAofTl |
number |
totalAofUsd |
number |
6.615. ZeroBalanceExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
exportType |
XLSX, CSV or PDF |
enum (XLSX, CSV, PDF) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.616. ZeroBalanceMonthlyDataDto
Name | Description | Schema |
---|---|---|
date |
Date value formatted like |
string (date-time) |
downRegulation |
DRI (TL) |
number |
downRegulationFine |
NFUTIA (TL) |
number |
downRegulationOne |
DRI - 1 (TL) |
number |
downRegulationZero |
DRI - 0 (TL) |
number |
kupst |
FPPDA |
number |
manual |
Manual Retroactive Adjustment |
number |
negativeImbalance |
Energy Imbalance Cost (TL) |
number |
renewableImbalance |
Renewables Energy Imbalance Cost (TL) |
number |
upRegulation |
URI (TL) |
number |
upRegulationFine |
NFDTIA (TL) |
number |
upRegulationOne |
URI - 1 (TL) |
number |
upRegulationZero |
URI - 0 (TL) |
number |
zeroBalanceAdjustment |
Total |
number |
6.617. ZeroBalanceMonthlyRequestDto
Name | Description | Schema |
---|---|---|
endDate |
Date value formatted like |
string (date-time) |
page |
Paging Details |
|
startDate |
Date value formatted like |
string (date-time) |
6.618. ZeroBalanceMonthlyResponseDto
Name | Schema |
---|---|
items |
< ZeroBalanceMonthlyDataDto > array |
page |