Overview
Version information
Version : v1.2.11
URI scheme
Host : seffaflik.epias.com.tr
BasePath : /natural-gas-service
Schemes : HTTPS
Tags
-
markets-general-data-data-controller
-
markets-general-data-export-controller
-
markets-sgp-data-controller
-
markets-sgp-export-controller
-
markets-vgp-data-controller
-
markets-vgp-export-controller
-
transmission-data-controller
-
transmission-export-controller
About Document
In this document, the definitions of Transparency Platform Natural Gas services and how to call these services are explained.
1. About Transparency Natural Gas 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 pre-determined 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. Natural Gas Market Participants Listing Service
POST /v1/markets/general-data/data/market-participant
5.1.1. Description
It shows market (SGP, VGP) registration status of the participants.
5.1.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
markets-general-data-data-controller
5.2. Participant List Service
GET /v1/markets/general-data/data/participant-list
5.2.1. Description
Participant List Service
5.2.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.2.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.2.4. Produces
-
application/json
-
application/xml
5.2.5. Tags
-
markets-general-data-data-controller
5.3. Natural Gas Market Participants Export Service
POST /v1/markets/general-data/export/market-participant
5.3.1. Description
It shows market (SGP, VGP) registration status of the participants. Exports Natural Gas Market Participants datas as XLSX, CSV or PDF formats.
5.3.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.3.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.3.4. Consumes
-
application/json
-
application/xml
5.3.5. Produces
-
application/json
-
application/xml
5.3.6. Tags
-
markets-general-data-export-controller
5.4. Announcement For TSO Transactions Listing Service
POST /v1/markets/sgp/data/additional-notifications
5.4.1. Description
It shows to the notifications made to market participants for transactions aiming to eliminate the imbalance in the network.
5.4.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.4.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.4.4. Consumes
-
application/json
-
application/xml
5.4.5. Produces
-
application/json
-
application/xml
5.4.6. Tags
-
markets-sgp-data-controller
5.5. Balancing Gas Price (BGP) Listing Service
POST /v1/markets/sgp/data/balancing-gas-price
5.5.1. Description
It shows the Weighted Average Price of Additional Balancing Buy or Sell transactions performed by the Transmission Company on the relevant gas day. Prices shown with (*) are unconfirmed prices. -Residual Balancer Bid Price (IDAF): weighted avarage buy price of TSO’s trades for the related day. -Residual Balancer Offer Price (IDSF): weighted avarage sell price of TSO’s trades for the related day. -Balancing Gas Bid Price (DGAF); Cashout price for negative imbalances for the related day. -Balancing Gas Offer Price (DGSF): Cashout price for the positive imbalances for the related day. *Price: TL/1000 sm3
5.5.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.5.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.5.4. Consumes
-
application/json
-
application/xml
5.5.5. Produces
-
application/json
-
application/xml
5.5.6. Tags
-
markets-sgp-data-controller
5.6. Neutralization Item Listing Service
POST /v1/markets/sgp/data/bast
5.6.1. Description
It shows amount remaining in EPİAŞ after deducting the receivables or debts of the Transmission Company and to be Distributed to the Participants in accordance with the legislation.
5.6.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
markets-sgp-data-controller
5.7. 2 Coded Transaction Listing Service
POST /v1/markets/sgp/data/blue-code-operation
5.7.1. Description
It shows to the 2 Coded Additional Balancer Operations aimed at eliminating the imbalance in the network.
5.7.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
markets-sgp-data-controller
5.8. SGP Daily Matched Quantity Listing Service
POST /v1/markets/sgp/data/daily-matched-quantity
5.8.1. Description
It shows Total Amount of day-ahead and intra-day matches in daily contracts in the Spot Natural Gas Market. Day Ahead Matched Quantity (GÖEM): It is the total amount of matches that took place between (D-1 08:00 – D 08:00). Intraday Matched Quantity (GİEM): It is the total amount of matches that took place between (D 08:00) (D+1 08:00). After Day Matched Quantity (GEEM): It is the total amount of matches that took place between (D+1 08:00- 14:00). TOTAL: It is the total matching amount of day ahead, intraday and next day contracts.
5.8.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.8.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.8.4. Consumes
-
application/json
-
application/xml
5.8.5. Produces
-
application/json
-
application/xml
5.8.6. Tags
-
markets-sgp-data-controller
5.9. Daily Reference Price (DRP) Listing Service
POST /v1/markets/sgp/data/daily-reference-price
5.9.1. Description
It shows Weighted Average Price of day-ahead and intraday pairings in the Spot Natural Gas Market. Prices shown with (*) are unconfirmed prices. GRF(EUR/MWh), GRF (USD/1000Sm3) and GRF (USD/MMBtu) values are calculated by taking into account the most current EURTRY & USDTRY foreign exchange buying rate announced by the CBRT as of the GRF announcement date. 1Sm3 = 10.64 kWh
5.9.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
markets-sgp-data-controller
5.10. SGP Daily Trade Volume Listing Service
POST /v1/markets/sgp/data/daily-trade-volume
5.10.1. Description
It shows Total Amount of the matches in the daily contracts in the Spot Natural Gas Market. DÖİH: It is the total volume of matches that took place between (W-1 08:00 W 08:00). GİH: It is the total volume of matches that took place between (D 08:00 D+1 08:00). GEİH: It is the total volume of matches that took place between (D+1 08:00 14:00). TOTAL: The total volume of day ahead, intraday and next day contracts.
5.10.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.10.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.10.4. Consumes
-
application/json
-
application/xml
5.10.5. Produces
-
application/json
-
application/xml
5.10.6. Tags
-
markets-sgp-data-controller
5.11. 4 Coded Transaction Listing Service
POST /v1/markets/sgp/data/four-code-operation
5.11.1. Description
It shows to the 4 Coded Additional Balancer Operations aimed at eliminating the imbalance in the network.
5.11.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.11.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.11.4. Consumes
-
application/json
-
application/xml
5.11.5. Produces
-
application/json
-
application/xml
5.11.6. Tags
-
markets-sgp-data-controller
5.12. Retroactive Adjustment Item Amount Listing Service
POST /v1/markets/sgp/data/gddk-amount
5.12.1. Description
It shows total Credit or Payable Amount in the new invoice with the retrospective corrections made in the previous period invoices.
5.12.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
markets-sgp-data-controller
5.13. 1 Coded Transaction Listing Service
POST /v1/markets/sgp/data/green-code-operation
5.13.1. Description
It shows to Additional Balancer Operations with Code 1 aiming to eliminate the imbalance in the network.
5.13.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
markets-sgp-data-controller
5.14. Matched Quantity for DRP Listing Service
POST /v1/markets/sgp/data/grf-match-quantity
5.14.1. Description
It shows Total Amount of day-ahead and intra-day matches in daily contracts in the Spot Natural Gas Market. Match amounts marked with (*) are unconfirmed match amounts.
5.14.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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 |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.14.4. Consumes
-
application/json
-
application/xml
5.14.5. Produces
-
application/json
-
application/xml
5.14.6. Tags
-
markets-sgp-data-controller
5.15. GRP Trade Volume Listing Service
POST /v1/markets/sgp/data/grf-trade-volume
5.15.1. Description
It shows Total Amount of day-ahead and intra-day pairings in daily contracts in the Spot Natural Gas Market. It is the total volume of transactions occurring between D-1 08:00 and D+1 08:00.
5.15.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.15.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.15.4. Consumes
-
application/json
-
application/xml
5.15.5. Produces
-
application/json
-
application/xml
5.15.6. Tags
-
markets-sgp-data-controller
5.16. SGP Imbalance Amount Listing Service
POST /v1/markets/sgp/data/imbalance-amount
5.16.1. Description
It shows the amount that the Shippers are liable to pay for the imbalance in the network as a result of the purchase or sale weighted transactions. *Final allocation data is being published.
5.16.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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 |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.16.4. Consumes
-
application/json
-
application/xml
5.16.5. Produces
-
application/json
-
application/xml
5.16.6. Tags
-
markets-sgp-data-controller
5.17. Imbalance System Listing Service
POST /v1/markets/sgp/data/imbalance-system
5.17.1. Description
It shows increase or decrease in the Network Stock Gas Amount compared to the previous gas day. It is marked with (+) if it is greater and (-) if it is less.
5.17.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
markets-sgp-data-controller
5.18. Sgp Last Reconciliation Date Service
GET /v1/markets/sgp/data/last-reconciliation-date
5.18.1. Description
Sgp Last Reconciliation Date Service
5.18.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
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. Produces
-
application/json
-
application/xml
5.18.5. Tags
-
markets-sgp-data-controller
5.19. SGP Total Matched Quantity Listing Service
POST /v1/markets/sgp/data/match-quantity
5.19.1. Description
It shows Total Amount of matches in daily and weekly contracts in the Spot Natural Gas Market.
5.19.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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 |
|
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
-
markets-sgp-data-controller
5.20. 3 Coded Transaction Listing Service
POST /v1/markets/sgp/data/orange-code-operation
5.20.1. Description
It shows to the 3 Coded Additional Balancer Operations aimed at eliminating the imbalance in the network.
5.20.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
markets-sgp-data-controller
5.21. Physical Realization Service
POST /v1/markets/sgp/data/physical-realization
5.21.1. Description
It shows Natural Gas Quantity that the Shippers add or remove from the physical network points to the system through Buying or Selling.
5.21.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
markets-sgp-data-controller
5.22. SGP Price Listing Service
POST /v1/markets/sgp/data/sgp-price
5.22.1. Description
It shows Weighted Average Price of matches in the relevant trading range in the Spot Natural Gas Market. Day Ahead Price; (D-1 08:00- D 08:00), -Intraday Price; (D 08:00)-(D+1 08:00), Day After Price; (D+1) (08:00-14:00), -Weighted Average Price;(D-1 08:00)-(D+1 14:00)
5.22.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
markets-sgp-data-controller
5.23. Shipper’s Imbalance Quantity Listing Service
POST /v1/markets/sgp/data/shippers-imbalance-quantity
5.23.1. Description
It shows Natural Gas Excess or Deficiency Amount that occurs in the network as a result of the purchase or sale weighted transactions of the shippers. *It is calculated based on first allocation data.
5.23.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.23.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.23.4. Consumes
-
application/json
-
application/xml
5.23.5. Produces
-
application/json
-
application/xml
5.23.6. Tags
-
markets-sgp-data-controller
5.24. System Balance Listing Service
POST /v1/markets/sgp/data/system-direction
5.24.1. Description
It shows actual value compared to the Network Stock Gas Amount value targeted by the Transmission Company for the relevant day. It is valued as (+) if it is greater than (-) if it is less. *Final allocation data is being published.
5.24.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
markets-sgp-data-controller
5.25. SGP Total Trade Volume Listing Service
POST /v1/markets/sgp/data/total-trade-volume
5.25.1. Description
It shows Total Amount of the matches in the daily and weekly contracts in the Spot Natural Gas Market. -Day Ahead Transaction Volume (GÖİH) : This is the total volume of matches that took place between (W-1 08:00 - D 08:00). -Intraday Transaction Volume (GIIH): It is the total volume of matches that took place between (D 08:00) and (D+1 08:00). -Day after Transaction Volume (GEİH): It is the total volume of matches that took place between (D+1 08:00 - 14:00). -TOTAL: It is the total transaction volume of day ahead, intraday and next day contracts (Total transaction volume of the relevant contract).
5.25.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
markets-sgp-data-controller
5.26. SGP Transaction History Listing Service
POST /v1/markets/sgp/data/transaction-history
5.26.1. Description
It shows Matching Times of spot contracts.
5.26.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.26.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.26.4. Consumes
-
application/json
-
application/xml
5.26.5. Produces
-
application/json
-
application/xml
5.26.6. Tags
-
markets-sgp-data-controller
5.27. Virtual Realization Listing Service
POST /v1/markets/sgp/data/virtual-realization
5.27.1. Description
It shows Natural Gas Quantity that the Shippers add or remove from the virtual network points (UDN) through Purchase or Sale. *Final allocation data is being published.
5.27.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.27.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.27.4. Consumes
-
application/json
-
application/xml
5.27.5. Produces
-
application/json
-
application/xml
5.27.6. Tags
-
markets-sgp-data-controller
5.28. SGP Weekly Matched Quantity Listing Service
POST /v1/markets/sgp/data/weekly-matched-quantity
5.28.1. Description
It shows Total Amount of weekly contracts in the Spot Natural Gas Market. -Weekdays Transaction Quantity (HIEM): It is the total matching amount of weekday contracts. -Weekend Transaction Quantity (HSEM): It is the total matching amount for weekend contracts. -Whole Week Transaction Quantity (HTEM): Total match amount for all contracts for the week. -TOTAL: It is the total matching amount of weekday, weekend and all-week contracts.
5.28.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.28.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.28.4. Consumes
-
application/json
-
application/xml
5.28.5. Produces
-
application/json
-
application/xml
5.28.6. Tags
-
markets-sgp-data-controller
5.29. Weekly Reference Price (WRP) Listing Service
POST /v1/markets/sgp/data/weekly-ref-price
5.29.1. Description
It shows Weighted Average Price of weekly contract pairings in the Spot Natural Gas Market. HI: Weekdays HS: Weekend HT: Whole Week *Price: TL/1000 sm3
5.29.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.29.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.29.4. Consumes
-
application/json
-
application/xml
5.29.5. Produces
-
application/json
-
application/xml
5.29.6. Tags
-
markets-sgp-data-controller
5.30. SGP Weekly Trade Volume Listing Service
POST /v1/markets/sgp/data/weekly-trade-volume
5.30.1. Description
It shows Total Amount of weekly contracts in the Spot Natural Gas Market. -Weekdays Trade Volume: is the total transaction volume of weekday contracts. -Weekend Trade Volume (HSIH) : is the total transaction volume of weekend contracts. -Whole Week Trade Volume (HTIH): is the total transaction volume of all weekly contracts. -TOTAL: The total transaction volume of weekday, weekend and all-week contracts.
5.30.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
markets-sgp-data-controller
5.31. Announcement For TSO Transactions Export Service
POST /v1/markets/sgp/export/additional-notifications
5.31.1. Description
It shows to the notifications made to market participants for transactions aiming to eliminate the imbalance in the network. Exports Announcement for TSO Transactions 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
-
markets-sgp-export-controller
5.32. Balancing Gas Price (BGP) Export Service
POST /v1/markets/sgp/export/balancing-gas-price
5.32.1. Description
It shows the Weighted Average Price of Additional Balancing Buy or Sell transactions performed by the Transmission Company on the relevant gas day. Prices shown with (*) are unconfirmed prices. -Residual Balancer Bid Price (IDAF): weighted avarage buy price of TSO’s trades for the related day. -Residual Balancer Offer Price (IDSF): weighted avarage sell price of TSO’s trades for the related day. -Balancing Gas Bid Price (DGAF); Cashout price for negative imbalances for the related day. -Balancing Gas Offer Price (DGSF): Cashout price for the positive imbalances for the related day. *Price: TL/1000 sm3 Exports Balancing Gas Price (BGP) 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
-
markets-sgp-export-controller
5.33. Neutralization Item Export Service
POST /v1/markets/sgp/export/bast
5.33.1. Description
It shows amount remaining in EPİAŞ after deducting the receivables or debts of the Transmission Company and to be Distributed to the Participants in accordance with the legislation. Exports Neutralization Item datas as XLSX, CSV or PDF formats.
5.33.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.33.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.33.4. Consumes
-
application/json
-
application/xml
5.33.5. Produces
-
application/json
-
application/xml
5.33.6. Tags
-
markets-sgp-export-controller
5.34. 2 Coded Transaction Export Service
POST /v1/markets/sgp/export/blue-code-operation
5.34.1. Description
It shows to the 2 Coded Additional Balancer Operations aimed at eliminating the imbalance in the network. Exports 2 Coded Transaction 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
-
markets-sgp-export-controller
5.35. SGP Daily Matched Quantity Export Service
POST /v1/markets/sgp/export/daily-matched-quantity
5.35.1. Description
It shows Total Amount of day-ahead and intra-day matches in daily contracts in the Spot Natural Gas Market. Day Ahead Matched Quantity (GÖEM): It is the total amount of matches that took place between (D-1 08:00 – D 08:00). Intraday Matched Quantity (GİEM): It is the total amount of matches that took place between (D 08:00) (D+1 08:00). After Day Matched Quantity (GEEM): It is the total amount of matches that took place between (D+1 08:00- 14:00). TOTAL: It is the total matching amount of day ahead, intraday and next day contracts. Exports SGP Daily Matched Quantity datas as XLSX, CSV or PDF formats.
5.35.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.35.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.35.4. Consumes
-
application/json
-
application/xml
5.35.5. Produces
-
application/json
-
application/xml
5.35.6. Tags
-
markets-sgp-export-controller
5.36. SGP Daily Matched Quantity Export Service
POST /v1/markets/sgp/export/daily-reference-price
5.36.1. Description
It shows Weighted Average Price of day-ahead and intraday pairings in the Spot Natural Gas Market. Prices shown with (*) are unconfirmed prices. GRF(EUR/MWh), GRF (USD/1000Sm3) and GRF (USD/MMBtu) values are calculated by taking into account the most current EURTRY & USDTRY foreign exchange buying rate announced by the CBRT as of the GRF announcement date. 1Sm3 = 10.64 kWh Exports SGP Daily Matched Quantity 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
-
markets-sgp-export-controller
5.37. SGP Daily Trade Volume Export Service
POST /v1/markets/sgp/export/daily-trade-volume
5.37.1. Description
It shows Total Amount of the matches in the daily contracts in the Spot Natural Gas Market. DÖİH: It is the total volume of matches that took place between (W-1 08:00 W 08:00). GİH: It is the total volume of matches that took place between (D 08:00 D+1 08:00). GEİH: It is the total volume of matches that took place between (D+1 08:00 14:00). TOTAL: The total volume of day ahead, intraday and next day contracts. Exports SGP Daily Trade Volume datas as XLSX, CSV or PDF formats.
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
-
markets-sgp-export-controller
5.38. 4 Coded Transaction Export Service
POST /v1/markets/sgp/export/four-code-operation
5.38.1. Description
It shows to the 4 Coded Additional Balancer Operations aimed at eliminating the imbalance in the network. Exports 4 Coded Transaction 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
-
markets-sgp-export-controller
5.39. Retroactive Adjustment Item Amount Export Service
POST /v1/markets/sgp/export/gddk-amount
5.39.1. Description
It shows total Credit or Payable Amount in the new invoice with the retrospective corrections made in the previous period invoices. Exports Retroactive Adjustment Item Amount 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
-
markets-sgp-export-controller
5.40. 1 Coded Transaction Export Service
POST /v1/markets/sgp/export/green-code-operation
5.40.1. Description
It shows to Additional Balancer Operations with Code 1 aiming to eliminate the imbalance in the network. Exports 1 Coded Transaction 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
-
markets-sgp-export-controller
5.41. Matched Quantity for DRP Export Service
POST /v1/markets/sgp/export/grf-match-quantity
5.41.1. Description
It shows Total Amount of day-ahead and intra-day matches in daily contracts in the Spot Natural Gas Market. Match amounts marked with (*) are unconfirmed match amounts. Exports Matched Quantity for DRP 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
-
markets-sgp-export-controller
5.42. GRP Trade Volume Export Service
POST /v1/markets/sgp/export/grf-trade-volume
5.42.1. Description
It shows Total Amount of day-ahead and intra-day pairings in daily contracts in the Spot Natural Gas Market. It is the total volume of transactions occurring between D-1 08:00 and D+1 08:00. Exports GRP Trade Volume datas as XLSX, CSV or PDF formats.
5.42.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.42.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.42.4. Consumes
-
application/json
-
application/xml
5.42.5. Produces
-
application/json
-
application/xml
5.42.6. Tags
-
markets-sgp-export-controller
5.43. SGP Imbalance Amount Export Service
POST /v1/markets/sgp/export/imbalance-amount
5.43.1. Description
It shows the amount that the Shippers are liable to pay for the imbalance in the network as a result of the purchase or sale weighted transactions. *Final allocation data is being published. Exports SGP Imbalance Amount datas as XLSX, CSV or PDF formats.
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-sgp-export-controller
5.44. Imbalance System Export Service
POST /v1/markets/sgp/export/imbalance-system
5.44.1. Description
It shows increase or decrease in the Network Stock Gas Amount compared to the previous gas day. It is marked with (+) if it is greater and (-) if it is less. Exports Imbalance System datas as XLSX, CSV or PDF formats.
5.44.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.44.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.44.4. Consumes
-
application/json
-
application/xml
5.44.5. Produces
-
application/json
-
application/xml
5.44.6. Tags
-
markets-sgp-export-controller
5.45. Weekly Reference Price (WRP) Export Service
POST /v1/markets/sgp/export/match-quantity
5.45.1. Description
It shows Total Amount of matches in daily and weekly contracts in the Spot Natural Gas Market. Exports SGP Total Matched Quantity datas as XLSX, CSV or PDF formats.
5.45.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.45.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.45.4. Consumes
-
application/json
-
application/xml
5.45.5. Produces
-
application/json
-
application/xml
5.45.6. Tags
-
markets-sgp-export-controller
5.46. 3 Coded Transaction Export Service
POST /v1/markets/sgp/export/orange-code-operation
5.46.1. Description
It shows to the 3 Coded Additional Balancer Operations aimed at eliminating the imbalance in the network. Exports 3 Coded Transaction datas as XLSX, CSV or PDF formats.
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-sgp-export-controller
5.47. Physical Realization Export Service
POST /v1/markets/sgp/export/physical-realization
5.47.1. Description
It shows Natural Gas Quantity that the Shippers add or remove from the physical network points to the system through Buying or Selling. Exports Physical Realization datas as XLSX, CSV or PDF formats.
5.47.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.47.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.47.4. Consumes
-
application/json
-
application/xml
5.47.5. Produces
-
application/json
-
application/xml
5.47.6. Tags
-
markets-sgp-export-controller
5.48. SGP Price Export Service
POST /v1/markets/sgp/export/sgp-price
5.48.1. Description
It shows Weighted Average Price of matches in the relevant trading range in the Spot Natural Gas Market. Day Ahead Price; (D-1 08:00- D 08:00), -Intraday Price; (D 08:00)-(D+1 08:00), Day After Price; (D+1) (08:00-14:00), -Weighted Average Price;(D-1 08:00)-(D+1 14:00) Exports SGP Price datas as XLSX, CSV or PDF formats.
5.48.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.48.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.48.4. Consumes
-
application/json
-
application/xml
5.48.5. Produces
-
application/json
-
application/xml
5.48.6. Tags
-
markets-sgp-export-controller
5.49. Shipper’s Imbalance Quantity Export Service
POST /v1/markets/sgp/export/shippers-imbalance-quantity
5.49.1. Description
It shows Natural Gas Excess or Deficiency Amount that occurs in the network as a result of the purchase or sale weighted transactions of the shippers. *It is calculated based on first allocation data. Exports Shipper’s Imbalance Quantity datas as XLSX, CSV or PDF formats.
5.49.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.49.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.49.4. Consumes
-
application/json
-
application/xml
5.49.5. Produces
-
application/json
-
application/xml
5.49.6. Tags
-
markets-sgp-export-controller
5.50. System Balance Export Service
POST /v1/markets/sgp/export/system-direction
5.50.1. Description
It shows actual value compared to the Network Stock Gas Amount value targeted by the Transmission Company for the relevant day. It is valued as (+) if it is greater than (-) if it is less. *Final allocation data is being published. Exports System Balance datas as XLSX, CSV or PDF formats.
5.50.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.50.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.50.4. Consumes
-
application/json
-
application/xml
5.50.5. Produces
-
application/json
-
application/xml
5.50.6. Tags
-
markets-sgp-export-controller
5.51. SGP Total Trade Volume Export Service
POST /v1/markets/sgp/export/total-trade-volume
5.51.1. Description
It shows Total Amount of the matches in the daily and weekly contracts in the Spot Natural Gas Market. -Day Ahead Transaction Volume (GÖİH) : This is the total volume of matches that took place between (W-1 08:00 - D 08:00). -Intraday Transaction Volume (GIIH): It is the total volume of matches that took place between (D 08:00) and (D+1 08:00). -Day after Transaction Volume (GEİH): It is the total volume of matches that took place between (D+1 08:00 - 14:00). -TOTAL: It is the total transaction volume of day ahead, intraday and next day contracts (Total transaction volume of the relevant contract). Exports SGP Total Trade Volume datas as XLSX, CSV or PDF formats.
5.51.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.51.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.51.4. Consumes
-
application/json
-
application/xml
5.51.5. Produces
-
application/json
-
application/xml
5.51.6. Tags
-
markets-sgp-export-controller
5.52. SGP Transaction History Export Service
POST /v1/markets/sgp/export/transaction-history
5.52.1. Description
It shows Matching Times of spot contracts. Exports SGP Transaction History datas as XLSX, CSV or PDF formats.
5.52.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.52.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.52.4. Consumes
-
application/json
-
application/xml
5.52.5. Produces
-
application/json
-
application/xml
5.52.6. Tags
-
markets-sgp-export-controller
5.53. Virtual Realization Export Service
POST /v1/markets/sgp/export/virtual-realization
5.53.1. Description
It shows Natural Gas Quantity that the Shippers add or remove from the virtual network points (UDN) through Purchase or Sale. *Final allocation data is being published. Exports Virtual Realization 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-sgp-export-controller
5.54. SGP Weekly Matched Quantity Export Service
POST /v1/markets/sgp/export/weekly-matched-quantity
5.54.1. Description
It shows Total Amount of weekly contracts in the Spot Natural Gas Market. -Weekdays Transaction Quantity (HIEM): It is the total matching amount of weekday contracts. -Weekend Transaction Quantity (HSEM): It is the total matching amount for weekend contracts. -Whole Week Transaction Quantity (HTEM): Total match amount for all contracts for the week. -TOTAL: It is the total matching amount of weekday, weekend and all-week contracts. Exports SGP Weekly Matched Quantity datas as XLSX, CSV or PDF formats.
5.54.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.54.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.54.4. Consumes
-
application/json
-
application/xml
5.54.5. Produces
-
application/json
-
application/xml
5.54.6. Tags
-
markets-sgp-export-controller
5.55. Weekly Reference Price (WRP) Export Service
POST /v1/markets/sgp/export/weekly-ref-price
5.55.1. Description
It shows Weighted Average Price of weekly contract pairings in the Spot Natural Gas Market. HI: Weekdays HS: Weekend HT: Whole Week *Price: TL/1000 sm3 Exports Weekly Reference Price (WRP) 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-sgp-export-controller
5.56. SGP Weekly Trade Volume Export Service
POST /v1/markets/sgp/export/weekly-trade-volume
5.56.1. Description
It shows Total Amount of weekly contracts in the Spot Natural Gas Market. -Weekdays Trade Volume: is the total transaction volume of weekday contracts. -Weekend Trade Volume (HSIH) : is the total transaction volume of weekend contracts. -Whole Week Trade Volume (HTIH): is the total transaction volume of all weekly contracts. -TOTAL: The total transaction volume of weekday, weekend and all-week contracts. Exports SGP Weekly Trade 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-sgp-export-controller
5.57. GFM Contract Price Summary Data Listing Service
POST /v1/markets/vgp/data/contract-price-summary
5.57.1. Description
It shows Match Price Statistics of futures contracts.First Match Price (TL/1000.Sm3): Indicates the first transaction price realized in each futures contract on the relevant day.Highest Matching Price (TL/1000.Sm3): Indicates the highest matching price realized in each futures contract on the relevant day.Lowest Matching Price (TL/1000.Sm3): Shows the lowest match price realized for each futures contract on the relevant day.Last Match Price (TL/1000.Sm3): Shows the last trade price realized for each futures contract on the relevant day.
5.57.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.57.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.57.4. Consumes
-
application/json
-
application/xml
5.57.5. Produces
-
application/json
-
application/xml
5.57.6. Tags
-
markets-vgp-data-controller
5.58. Delivery Period
GET /v1/markets/vgp/data/delivery-period
5.58.1. Description
Delivery Period
5.58.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.58.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.58.4. Produces
-
application/json
-
application/xml
5.58.5. Tags
-
markets-vgp-data-controller
5.59. Delivery Year
GET /v1/markets/vgp/data/delivery-year
5.59.1. Description
Delivery Year
5.59.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.59.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.59.4. Produces
-
application/json
-
application/xml
5.59.5. Tags
-
markets-vgp-data-controller
5.60. GFM Daily Index Price Data Listing Service
POST /v1/markets/vgp/data/ggf
5.60.1. Description
It shows Weighted Average Price of day-ahead and intraday pairings in the Futures Natural Gas Market (VGP).
5.60.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.60.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.60.4. Consumes
-
application/json
-
application/xml
5.60.5. Produces
-
application/json
-
application/xml
5.60.6. Tags
-
markets-vgp-data-controller
5.61. GFM Matching Amount (1000.Sm³/day) Data Listing Service
POST /v1/markets/vgp/data/matching-quantity
5.61.1. Description
It shows Weighted Average Prices of Bids and/or Matches of Futures Contracts.
5.61.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
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. Consumes
-
application/json
-
application/xml
5.61.5. Produces
-
application/json
-
application/xml
5.61.6. Tags
-
markets-vgp-data-controller
5.62. GFM Open Position (1000.Sm³/day) Data Listing Service
POST /v1/markets/vgp/data/open-position
5.62.1. Description
It shows the Spread Amount of the Futures Contracts for Bid and Sell Matches.
5.62.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
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. Consumes
-
application/json
-
application/xml
5.62.5. Produces
-
application/json
-
application/xml
5.62.6. Tags
-
markets-vgp-data-controller
5.63. GFM Order Prices Data Listing Service
POST /v1/markets/vgp/data/vgp-offer-price
5.63.1. Description
It shows Bid Price Statistics of futures contracts.
5.63.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
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. Consumes
-
application/json
-
application/xml
5.63.5. Produces
-
application/json
-
application/xml
5.63.6. Tags
-
markets-vgp-data-controller
5.64. GFM Transaction History Data Listing Service
POST /v1/markets/vgp/data/vgp-transaction-history
5.64.1. Description
It shows Matching Times of futures contracts.Matching Price (TL/1000.Sm3): Shows the matching price of the transaction realized in each futures contract on the relevant day.Matching Amount (1000.Sm3): Shows the matching amount of the transaction realized in each futures contract on the relevant day.
5.64.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
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. Consumes
-
application/json
-
application/xml
5.64.5. Produces
-
application/json
-
application/xml
5.64.6. Tags
-
markets-vgp-data-controller
5.65. GFM Trade Volume Data Listing Service
POST /v1/markets/vgp/data/vgp-volume
5.65.1. Description
It shows Matched Amount of futures contracts.
5.65.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
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. Consumes
-
application/json
-
application/xml
5.65.5. Produces
-
application/json
-
application/xml
5.65.6. Tags
-
markets-vgp-data-controller
5.66. GFM Contract Price Summary Export Service
POST /v1/markets/vgp/export/contract-price-summary
5.66.1. Description
It shows Match Price Statistics of futures contracts.First Match Price (TL/1000.Sm3): Indicates the first transaction price realized in each futures contract on the relevant day.Highest Matching Price (TL/1000.Sm3): Indicates the highest matching price realized in each futures contract on the relevant day.Lowest Matching Price (TL/1000.Sm3): Shows the lowest match price realized for each futures contract on the relevant day.Last Match Price (TL/1000.Sm3): Shows the last trade price realized for each futures contract on the relevant day.Exports GFM Contract Price Summary datas as XLSX, CSV or PDF formats.
5.66.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.66.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.66.4. Consumes
-
application/json
-
application/xml
5.66.5. Produces
-
application/json
-
application/xml
5.66.6. Tags
-
markets-vgp-export-controller
5.67. GFM Daily Index Price Data Export Service
POST /v1/markets/vgp/export/ggf
5.67.1. Description
It shows Weighted Average Price of day-ahead and intraday pairings in the Futures Natural Gas Market (VGP).Exports GFM Daily Index Price datas as XLSX, CSV or PDF formats.
5.67.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.67.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.67.4. Consumes
-
application/json
-
application/xml
5.67.5. Produces
-
application/json
-
application/xml
5.67.6. Tags
-
markets-vgp-export-controller
5.68. GFM Matching Amount (1000.Sm³/day) Export Service
POST /v1/markets/vgp/export/matching-quantity
5.68.1. Description
It shows Weighted Average Prices of Bids and/or Matches of Futures Contracts.Exports GFM Matching Amount (1000.Sm³/day) datas as XLSX, CSV or PDF formats.
5.68.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.68.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.68.4. Consumes
-
application/json
-
application/xml
5.68.5. Produces
-
application/json
-
application/xml
5.68.6. Tags
-
markets-vgp-export-controller
5.69. GFM Open Position (1000.Sm³/day) Export Service
POST /v1/markets/vgp/export/open-position
5.69.1. Description
It shows the Spread Amount of the Futures Contracts for Bid and Sell Matches.Exports GFM Open Position (1000.Sm³/day) datas as XLSX, CSV or PDF formats.
5.69.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.69.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.69.4. Consumes
-
application/json
-
application/xml
5.69.5. Produces
-
application/json
-
application/xml
5.69.6. Tags
-
markets-vgp-export-controller
5.70. GFM Order Prices Export Service
POST /v1/markets/vgp/export/vgp-offer-price
5.70.1. Description
It shows Bid Price Statistics of futures contracts.Exports GFM Order Prices datas as XLSX, CSV or PDF formats.
5.70.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.70.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.70.4. Consumes
-
application/json
-
application/xml
5.70.5. Produces
-
application/json
-
application/xml
5.70.6. Tags
-
markets-vgp-export-controller
5.71. GFM Transaction History Export Service
POST /v1/markets/vgp/export/vgp-transaction-history
5.71.1. Description
It shows Matching Times of futures contracts.Matching Price (TL/1000.Sm3): Shows the matching price of the transaction realized in each futures contract on the relevant day. Matching Amount (1000.Sm3): Shows the matching amount of the transaction realized in each futures contract on the relevant day.Exports GFM Transaction History datas as XLSX, CSV or PDF formats.
5.71.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.71.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.71.4. Consumes
-
application/json
-
application/xml
5.71.5. Produces
-
application/json
-
application/xml
5.71.6. Tags
-
markets-vgp-export-controller
5.72. GFM Trade Volume Export Service
POST /v1/markets/vgp/export/vgp-volume
5.72.1. Description
It shows Matched Amount of futures contracts.Exports GFM Trade Volume datas as XLSX, CSV or PDF formats.
5.72.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.72.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.72.4. Consumes
-
application/json
-
application/xml
5.72.5. Produces
-
application/json
-
application/xml
5.72.6. Tags
-
markets-vgp-export-controller
5.73. Capacity Point Service
POST /v1/transmission/data/capacity-point
5.73.1. Description
Capacity Point Service
5.73.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
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. Consumes
-
application/json
-
application/xml
5.73.5. Produces
-
application/json
-
application/xml
5.73.6. Tags
-
transmission-data-controller
5.74. Daily Actualization Amount Listing Service
POST /v1/transmission/data/daily-actualization-amount
5.74.1. Description
It shows amount of natural gas transferred from the network to the natural gas storage facilities.
5.74.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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. Consumes
-
application/json
-
application/xml
5.74.5. Produces
-
application/json
-
application/xml
5.74.6. Tags
-
transmission-data-controller
5.75. Day Ahead (UDN) Listing Service
POST /v1/transmission/data/day-ahead
5.75.1. Description
It shows Bilateral agreement refers to the statement of quantity.
5.75.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
transmission-data-controller
5.76. Day End (UDN) Listing Service
POST /v1/transmission/data/day-end
5.76.1. Description
Day End (UDN).
5.76.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
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. Consumes
-
application/json
-
application/xml
5.76.5. Produces
-
application/json
-
application/xml
5.76.6. Tags
-
transmission-data-controller
5.77. Entry Nomination Listing Service
POST /v1/transmission/data/entry-nomination
5.77.1. Description
It shows physical point based entry quantity notification.
5.77.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
transmission-data-controller
5.78. Exit Nomination Listing Service
POST /v1/transmission/data/exit-nomination
5.78.1. Description
It shows Physical Point-based output quantity notification.
5.78.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
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. Consumes
-
application/json
-
application/xml
5.78.5. Produces
-
application/json
-
application/xml
5.78.6. Tags
-
transmission-data-controller
5.79. Max Entry Amount Listing Service
POST /v1/transmission/data/max-entry-amount
5.79.1. Description
It shows amount of natural gas expected to be added to the transmission network according to the Transmission Company capacity plan.
5.79.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
transmission-data-controller
5.80. Max Exit Amount Listing Service
POST /v1/transmission/data/max-exit-amount
5.80.1. Description
It shows amount of natural gas expected to come out of the transmission network according to the Transmission Company capacity plan.
5.80.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-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
-
transmission-data-controller
5.81. Entry Amount Listing Service
POST /v1/transmission/data/realization-entry-amount
5.81.1. Description
It shows result of the Purchase transaction of the Shippers shows the actual amount of natural gas added to the system.
5.81.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.81.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.81.4. Consumes
-
application/json
-
application/xml
5.81.5. Produces
-
application/json
-
application/xml
5.81.6. Tags
-
transmission-data-controller
5.82. Exit Amount Listing Service
POST /v1/transmission/data/realization-exit-amount
5.82.1. Description
It shows result of the Shipper’s Sales transaction shows the actual amount of natural gas released from the system.
5.82.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.82.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.82.4. Consumes
-
application/json
-
application/xml
5.82.5. Produces
-
application/json
-
application/xml
5.82.6. Tags
-
transmission-data-controller
5.83. Entry Amount Listing Service
POST /v1/transmission/data/rezerve-entry-amount
5.83.1. Description
It shows amount of natural gas expected to be added to the transmission network according to the Transmission Company reservation program.
5.83.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.83.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.83.4. Consumes
-
application/json
-
application/xml
5.83.5. Produces
-
application/json
-
application/xml
5.83.6. Tags
-
transmission-data-controller
5.84. Exit Amount Listing Service
POST /v1/transmission/data/rezerve-exit-amount
5.84.1. Description
It shows amount of natural gas expected to come out of the transmission network according to the Transmission Company reservation program.
5.84.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.84.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.84.4. Consumes
-
application/json
-
application/xml
5.84.5. Produces
-
application/json
-
application/xml
5.84.6. Tags
-
transmission-data-controller
5.85. Stock Amount Listing Service
POST /v1/transmission/data/stock-amount
5.85.1. Description
It shows daily amount of natural gas trapped in the Transmission Network.
5.85.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.85.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.85.4. Consumes
-
application/json
-
application/xml
5.85.5. Produces
-
application/json
-
application/xml
5.85.6. Tags
-
transmission-data-controller
5.86. Storage Facility Service
GET /v1/transmission/data/storage-facility
5.86.1. Description
Storage Facility Service
5.86.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
5.86.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.86.4. Produces
-
application/json
-
application/xml
5.86.5. Tags
-
transmission-data-controller
5.87. Transfer Listing Service
POST /v1/transmission/data/transfer
5.87.1. Description
It shows Physical Point-based Bilateral agreement refers to the amount notification.
5.87.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Header |
TGT |
Required TGT header for authentication. More on: https://seffaflik.epias.com.tr/natural-gas-service/technical/en/index.html#_adding_security_information_to_requests |
string |
Body |
body |
Request Body. |
5.87.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.87.4. Consumes
-
application/json
-
application/xml
5.87.5. Produces
-
application/json
-
application/xml
5.87.6. Tags
-
transmission-data-controller
5.88. Daily Actualization Amount Export Service
POST /v1/transmission/export/daily-actualization-amount
5.88.1. Description
It shows amount of natural gas transferred from the network to the natural gas storage facilities. Exports Daily Actualization Amount datas as XLSX, CSV or PDF formats.
5.88.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.88.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.88.4. Consumes
-
application/json
-
application/xml
5.88.5. Produces
-
application/json
-
application/xml
5.88.6. Tags
-
transmission-export-controller
5.89. Day Ahead (UDN) Export Service
POST /v1/transmission/export/day-ahead
5.89.1. Description
It shows Bilateral agreement refers to the statement of quantity. Exports Day Ahead (UDN) datas as XLSX, CSV or PDF formats.
5.89.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.89.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.89.4. Consumes
-
application/json
-
application/xml
5.89.5. Produces
-
application/json
-
application/xml
5.89.6. Tags
-
transmission-export-controller
5.90. Day End (UDN) Export Service
POST /v1/transmission/export/day-end
5.90.1. Description
Day End (UDN). Exports Day End (UDN) datas as XLSX, CSV or PDF formats.
5.90.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.90.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.90.4. Consumes
-
application/json
-
application/xml
5.90.5. Produces
-
application/json
-
application/xml
5.90.6. Tags
-
transmission-export-controller
5.91. Entry Nomination Export Service
POST /v1/transmission/export/entry-nomination
5.91.1. Description
It shows physical point based entry quantity notification. Exports Entry Nomination datas as XLSX, CSV or PDF formats.
5.91.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.91.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.91.4. Consumes
-
application/json
-
application/xml
5.91.5. Produces
-
application/json
-
application/xml
5.91.6. Tags
-
transmission-export-controller
5.92. Exit Nomination Export Service
POST /v1/transmission/export/exit-nomination
5.92.1. Description
It shows Physical Point-based output quantity notification. Exports Exit Nomination datas as XLSX, CSV or PDF formats.
5.92.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.92.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.92.4. Consumes
-
application/json
-
application/xml
5.92.5. Produces
-
application/json
-
application/xml
5.92.6. Tags
-
transmission-export-controller
5.93. Max Entry Amount Export Service
POST /v1/transmission/export/max-entry-amount
5.93.1. Description
It shows amount of natural gas expected to be added to the transmission network according to the Transmission Company capacity plan. Exports Max Entry Amount datas as XLSX, CSV or PDF formats.
5.93.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.93.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.93.4. Consumes
-
application/json
-
application/xml
5.93.5. Produces
-
application/json
-
application/xml
5.93.6. Tags
-
transmission-export-controller
5.94. Max Exit Amount Export Service
POST /v1/transmission/export/max-exit-amount
5.94.1. Description
It shows amount of natural gas expected to come out of the transmission network according to the Transmission Company capacity plan. Exports Max Exit Amount datas as XLSX, CSV or PDF formats.
5.94.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.94.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.94.4. Consumes
-
application/json
-
application/xml
5.94.5. Produces
-
application/json
-
application/xml
5.94.6. Tags
-
transmission-export-controller
5.95. Entry Amount Export Service
POST /v1/transmission/export/realization-entry-amount
5.95.1. Description
It shows result of the Purchase transaction of the Shippers shows the actual amount of natural gas added to the system. Exports Entry Amount datas as XLSX, CSV or PDF formats.
5.95.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.95.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.95.4. Consumes
-
application/json
-
application/xml
5.95.5. Produces
-
application/json
-
application/xml
5.95.6. Tags
-
transmission-export-controller
5.96. Exit Amount Export Service
POST /v1/transmission/export/realization-exit-amount
5.96.1. Description
It shows result of the Shipper’s Sales transaction shows the actual amount of natural gas released from the system. Exports Exit Amount datas as XLSX, CSV or PDF formats.
5.96.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.96.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.96.4. Consumes
-
application/json
-
application/xml
5.96.5. Produces
-
application/json
-
application/xml
5.96.6. Tags
-
transmission-export-controller
5.97. Entry Amount Export Service
POST /v1/transmission/export/rezerve-entry-amount
5.97.1. Description
It shows amount of natural gas expected to be added to the transmission network according to the Transmission Company reservation program. Exports Entry Amount datas as XLSX, CSV or PDF formats.
5.97.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.97.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.97.4. Consumes
-
application/json
-
application/xml
5.97.5. Produces
-
application/json
-
application/xml
5.97.6. Tags
-
transmission-export-controller
5.98. Exit Amount Export Service
POST /v1/transmission/export/rezerve-exit-amount
5.98.1. Description
It shows amount of natural gas expected to come out of the transmission network according to the Transmission Company reservation program. Exports Exit Amount datas as XLSX, CSV or PDF formats.
5.98.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.98.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.98.4. Consumes
-
application/json
-
application/xml
5.98.5. Produces
-
application/json
-
application/xml
5.98.6. Tags
-
transmission-export-controller
5.99. Stock Amount Export Service
POST /v1/transmission/export/stock-amount
5.99.1. Description
It shows daily amount of natural gas trapped in the Transmission Network. Exports Stock Amount datas as XLSX, CSV or PDF formats.
5.99.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.99.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.99.4. Consumes
-
application/json
-
application/xml
5.99.5. Produces
-
application/json
-
application/xml
5.99.6. Tags
-
transmission-export-controller
5.100. Transfer Export Service
POST /v1/transmission/export/transfer
5.100.1. Description
It shows Physical Point-based Bilateral agreement refers to the amount notification. Exports Transfer datas as XLSX, CSV or PDF formats.
5.100.2. Parameters
Type | Name | Description | Schema |
---|---|---|---|
Body |
body |
Request Body. |
5.100.3. Responses
HTTP Code | Description | Schema |
---|---|---|
200 |
successful operation |
5.100.4. Consumes
-
application/json
-
application/xml
5.100.5. Produces
-
application/json
-
application/xml
5.100.6. Tags
-
transmission-export-controller
6. Definitions
6.1. AdditionalNotificationsDataDto
Name | Description | Schema |
---|---|---|
date |
|
string (date-time) |
message |
Description |
string |
subject |
Subject |
string |
6.2. AdditionalNotificationsExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.3. AdditionalNotificationsRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.4. AdditionalNotificationsResponseDto
Name | Schema |
---|---|
items |
< AdditionalNotificationsDataDto > array |
page |
6.5. BalancingGasPriceDataDto
Name | Description | Schema |
---|---|---|
additionalBalancingPurchase |
TSO Purchase Price |
number |
additionalBalancingSale |
TSO Sale Price |
number |
balancingGasPurchase |
Balancing Gas Purchase Price |
number |
balancingGasSale |
Balancing Gas Sale Price |
number |
gasDay |
Gas Day |
string (date-time) |
6.6. BalancingGasPriceExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.7. BalancingGasPriceRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.8. BalancingGasPriceResponseDto
Name | Schema |
---|---|
items |
< BalancingGasPriceDataDto > array |
page |
6.9. BastDataDto
Name | Description | Schema |
---|---|---|
bast |
Neutralization Item(TL) |
number |
gasDay |
Gas Day |
string (date-time) |
6.10. BastExportRequestDto
Name | Description | Schema |
---|---|---|
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
period |
Period |
string (date-time) |
6.11. BastRequestDto
Name | Description | Schema |
---|---|---|
page |
Sayfalama bilgisi. |
|
period |
Period |
string (date-time) |
6.12. BastResponseDto
Name | Schema |
---|---|
isAllowanceFinal |
boolean |
items |
< BastDataDto > array |
page |
|
statistics |
6.13. BastStatisticsDto
Name | Schema |
---|---|
totalAmount |
number |
6.14. CapacityPointRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
pointType |
INPUT |
enum (INPUT, OUTPUT) |
startDate |
|
string (date-time) |
6.15. CapacityPointResponseDataDto
Name | Description | Schema |
---|---|---|
pointId |
Point Id Of Point Name Information. |
integer (int64) |
pointName |
1234 |
string |
6.16. CapacityPointResponseDto
Name | Schema |
---|---|
items |
< CapacityPointResponseDataDto > array |
page |
6.17. ContractPriceSummaryExportRequestDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
Information Of Delivery Period |
string |
deliveryYear |
Information Of Year |
string |
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
isTransactionPeriod |
Boolean Value Of Transaction Period |
boolean |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.18. ContractPriceSummaryRequestDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
Information Of Delivery Period |
string |
deliveryYear |
Information Of Year |
string |
endDate |
|
string (date-time) |
isTransactionPeriod |
Boolean Value Of Transaction Period |
boolean |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.19. ContractPriceSummaryResponseDataDto
Name | Description | Schema |
---|---|---|
contractName |
Contract |
string |
firstMatchingPrice |
Total Trade Volume |
number |
ggf |
Total Trade Volume |
number |
latestMatchingPrice |
Total Trade Volume |
number |
maxMatchingPrice |
Total Trade Volume |
number |
minMatchingPrice |
Total Trade Volume |
number |
transactionDate |
Gas Day |
string (date-time) |
6.20. ContractPriceSummaryResponseDto
Name | Schema |
---|---|
items |
< ContractPriceSummaryResponseDataDto > array |
page |
6.21. DailyActualizationAmountExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
storageFacilityId |
Id Of Storage Facility |
integer (int64) |
6.22. DailyActualizationAmountRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
storageFacilityId |
Id Of Storage Facility |
integer (int64) |
6.23. DailyActualizationAmountResponseDataDto
Name | Description | Schema |
---|---|---|
date |
|
string (date-time) |
injection |
Max Entry Amount Transfer |
integer (int64) |
reproduction |
Max Entry Amount Transfer |
integer (int64) |
6.24. DailyActualizationAmountResponseDto
Name | Schema |
---|---|
items |
< DailyActualizationAmountResponseDataDto > array |
page |
6.25. DailyMatchedQuantityExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.26. DailyMatchedQuantityRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.27. DailyMatchedQuantityResponseDataDto
Name | Description | Schema |
---|---|---|
contractName |
Contract |
string |
dayAfterMatchingQuantity |
Day Ahead Matched Quantity (DAMQ) |
number |
dayAheadMatchingQuantity |
After Day Matched Quantity (ADMQ) |
number |
intraDayMatchingQuantity |
Intraday Matched Quantity (IDAMQ) |
number |
total |
Total |
number |
6.28. DailyMatchedQuantityResponseDto
Name | Schema |
---|---|
items |
< DailyMatchedQuantityResponseDataDto > array |
page |
6.29. DailyReferencePriceExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.30. DailyReferencePriceRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.31. DailyReferencePriceResponseDataDto
Name | Description | Schema |
---|---|---|
date |
|
string (date-time) |
grfEur |
DRP (EUR/1000Sm3) |
number |
grfTl |
DRP (TL/1000Sm3) |
number |
grfUsd |
DRP (USD/1000Sm3) |
number |
grfUsdMmBtu |
DRP (USD/MMBtu) |
number |
6.32. DailyReferencePriceResponseDto
Name | Schema |
---|---|
items |
< DailyReferencePriceResponseDataDto > array |
page |
|
statistics |
6.33. DailyReferencePriceStatisticsDto
Name | Schema |
---|---|
avgPriceEur |
number |
avgPriceTl |
number |
avgPriceUsd |
number |
avgPriceUsdMmBtu |
number |
6.34. DailyTradeVolumeExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.35. DailyTradeVolumeRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.36. DailyTradeVolumeResponseDataDto
Name | Description | Schema |
---|---|---|
contractName |
Contract |
string |
dayAfterTradeValue |
GEIH |
number |
dayAheadTradeValue |
GOIH |
number |
intraDayTradeValue |
GIIH |
number |
tradeValueTotal |
Total |
number |
6.37. DailyTradeVolumeResponseDto
Name | Schema |
---|---|
items |
< DailyTradeVolumeResponseDataDto > array |
page |
6.38. DayAheadResponseDataDto
Name | Description | Schema |
---|---|---|
date |
|
string (date-time) |
dayAheadAmount |
Day Ahead Amount |
number |
6.39. DayAheadResponseDto
Name | Schema |
---|---|
items |
< DayAheadResponseDataDto > array |
page |
|
totals |
6.40. DayEndResponseDataDto
Name | Description | Schema |
---|---|---|
date |
|
string (date-time) |
dayEndAmount |
Day End Amount |
number |
6.41. DayEndResponseDto
Name | Schema |
---|---|
items |
< DayEndResponseDataDto > array |
page |
|
totals |
6.42. DeliveryPeriodResponseDataDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
NAME |
string |
6.43. DeliveryPeriodResponseDto
Name | Schema |
---|---|
items |
< DeliveryPeriodResponseDataDto > array |
page |
6.44. DeliveryYearResponseDataDto
Name | Description | Schema |
---|---|---|
deliveryYear |
NAME |
string |
6.45. DeliveryYearResponseDto
Name | Schema |
---|---|
items |
< DeliveryYearResponseDataDto > array |
page |
6.46. EntryNominationExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.47. EntryNominationRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.48. EntryNominationResponseDataDto
Name | Description | Schema |
---|---|---|
date |
|
string (date-time) |
entryNominationAmount |
Transport Entry Amount |
number |
6.49. EntryNominationResponseDto
Name | Schema |
---|---|
items |
< EntryNominationResponseDataDto > array |
page |
|
totals |
6.50. ExitNominationExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.51. ExitNominationRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.52. ExitNominationResponseDataDto
Name | Description | Schema |
---|---|---|
date |
|
string (date-time) |
exitNominationAmount |
Transport Exit Amount |
number |
6.53. ExitNominationResponseDto
Name | Schema |
---|---|
items |
< ExitNominationResponseDataDto > array |
page |
|
totals |
6.54. GddkAmountsDataDto
Name | Description | Schema |
---|---|---|
credit |
Retroactive Adjustment Sum Receivable (TL) |
number |
dept |
Retroactive Adjustment Sum Liability (TL) |
number |
period |
Period |
string (date-time) |
version |
Version |
string (date-time) |
6.55. GddkAmountsExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.56. GddkAmountsRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.57. GddkAmountsResponseDto
Name | Schema |
---|---|
items |
< GddkAmountsDataDto > array |
page |
|
statistics |
6.58. GddkAmountsStatisticsDto
Name | Schema |
---|---|
credit |
number |
debt |
number |
6.59. GgfExportRequestDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
Information Of Delivery Period |
string |
deliveryYear |
Information Of Year |
string |
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
isTransactionPeriod |
Boolean Value Of Transaction Period |
boolean |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.60. GgfRequestDto
Name | Description | Schema |
---|---|---|
deliveryPeriod |
Information Of Delivery Period |
string |
deliveryYear |
Information Of Year |
string |
endDate |
|
string (date-time) |
isTransactionPeriod |
Boolean Value Of Transaction Period |
boolean |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.61. GgfResponseDataDto
Name | Description | Schema |
---|---|---|
contractName |
Contract |
string |
price |
Total Trade Volume |
number |
priceEur |
Total Trade Volume |
number |
priceUsd |
Total Trade Volume |
number |
transactionDate |
Gas Day |
string (date-time) |
6.62. GgfResponseDto
Name | Schema |
---|---|
items |
< GgfResponseDataDto > array |
page |
6.63. GrfMatchQuantityExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.64. GrfMatchQuantityRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.65. GrfMatchQuantityResponseDataDto
Name | Description | Schema |
---|---|---|
amount |
Matched Quantity for DRP |
integer |
gasDay |
Gas Day |
string (date-time) |
6.66. GrfMatchQuantityResponseDto
Name | Schema |
---|---|
items |
< GrfMatchQuantityResponseDataDto > array |
page |
6.67. GrfTradeVolumeExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.68. GrfTradeVolumeRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.69. GrfTradeVolumeResponseDataDto
Name | Description | Schema |
---|---|---|
gasDay |
Gas Day |
string (date-time) |
tradeValue |
GRP Trade Volume (TL) |
number |
6.70. GrfTradeVolumeResponseDto
Name | Schema |
---|---|
items |
< GrfTradeVolumeResponseDataDto > array |
page |
6.71. ImbalanceSystemExportRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.72. ImbalanceSystemRequestDto
Name | Description | Schema |
---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.73. ImbalanceSystemResponseDataDto
Name | Description | Schema |
---|---|---|
gasDay |
Gas Day |
string (date-time) |
imbalance |
System Balance(stdm3) |
number |
6.74. ImbalanceSystemResponseDto
Name | Schema |
---|---|
items |
< ImbalanceSystemResponseDataDto > array |
page |
6.75. MarketParticipantExportRequestDto
Name | Description | Schema |
---|---|---|
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
organizationId |
Organization id of the request |
integer (int32) |
page |
Sayfalama bilgisi. |
|
period |
Period |
string (date-time) |
6.76. MarketParticipantRequestDto
Name | Description | Schema |
---|---|---|
organizationId |
Organization id of the request |
integer (int32) |
page |
Sayfalama bilgisi. |
|
period |
Period |
string (date-time) |
6.77. MarketParticipantResponseDataDto
Name | Description | Schema |
---|---|---|
eic |
NAME |
string |
naturalGasMarketParticipation |