Overview
Version information
Version : v1.2.19
URI scheme
Host : seffaflik.epias.com.tr
BasePath : /natural-gas-service
Schemes : HTTPS
Tags
-
announcements-data-controller
-
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:
Example TGT Generation Curl HTTP Request:
curl -X POST https://giris.epias.com.tr/cas/v1/tickets \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: text/plain" \
-d 'username=your.email@yourcompany.com.tr&password=yourpassword'
Same Curl Command, but in one line:
curl -X POST https://giris.epias.com.tr/cas/v1/tickets -H "Content-Type: application/x-www-form-urlencoded" -H "Accept: text/plain" -d 'username=your.email@yourcompany.com.tr&password=yourpassword'
Successful Response: HTTP 201 Created with a TGT value:
TGT-...
Example Python Code:
import requests
url = "https://giris.epias.com.tr/cas/v1/tickets"
payload = "username=your.email@yourcompany.com.tr&password=yourpassword"
headers = {
"Content-Type": "application/x-www-form-urlencoded",
"Accept": "text/plain"
}
response = requests.post(url, data=payload, headers=headers)
print(response.status_code) # Response HTTP Status Code
print(response.text) # TGT value like: TGT-*******
Example Javascript(NodeJs) Code:
const url = "https://giris.epias.com.tr/cas/v1/tickets";
const payload = new URLSearchParams();
payload.append("username", "your.email@yourcompany.com.tr");
payload.append("password", "yourpassword");
fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/x-www-form-urlencoded",
"Accept": "text/plain"
},
body: payload.toString()
})
.then(response => {
console.log("Response Http Status Code:", response.status);
return response.text();
})
.then(text => {
console.log("TGT:", text);
})
.catch(error => {
console.error("Error:", error);
});
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. Announcement Data Listing Service
POST /v1/announcements/data
5.1.1. Description
Announcement Data Listing Service
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
-
announcements-data-controller
5.2. Natural Gas Market Participants Listing Service
POST /v1/markets/general-data/data/market-participant
5.2.1. Description
It shows market (SGP, VGP) registration status of the participants.
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 |
Body |
body |
Request Body. |
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. Consumes
-
application/json -
application/xml
5.2.5. Produces
-
application/json -
application/xml
5.2.6. Tags
-
markets-general-data-data-controller
5.3. Participant List Service
GET /v1/markets/general-data/data/participant-list
5.3.1. Description
Participant List Service
5.3.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.3.3. Responses
| HTTP Code | Description | Schema |
|---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.3.4. Produces
-
application/json -
application/xml
5.3.5. Tags
-
markets-general-data-data-controller
5.4. Natural Gas Market Participants Export Service
POST /v1/markets/general-data/export/market-participant
5.4.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.4.2. Parameters
| Type | Name | Description | Schema |
|---|---|---|---|
Body |
body |
Request Body. |
5.4.3. Responses
| HTTP Code | Description | Schema |
|---|---|---|
200 |
successful operation |
5.4.4. Consumes
-
application/json -
application/xml
5.4.5. Produces
-
application/json -
application/xml
5.4.6. Tags
-
markets-general-data-export-controller
5.5. Announcement For TSO Transactions Listing Service
POST /v1/markets/sgp/data/additional-notifications
5.5.1. Description
It shows to the notifications made to market participants for transactions aiming to eliminate the imbalance in the network.
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. Balancing Gas Price (BGP) Listing Service
POST /v1/markets/sgp/data/balancing-gas-price
5.6.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.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. Neutralization Item Listing Service
POST /v1/markets/sgp/data/bast
5.7.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.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. 2 Coded Transaction Listing Service
POST /v1/markets/sgp/data/blue-code-operation
5.8.1. Description
It shows to the 2 Coded Additional Balancer Operations aimed at eliminating the imbalance in the network.
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. SGP Daily Matched Quantity Listing Service
POST /v1/markets/sgp/data/daily-matched-quantity
5.9.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.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. Daily Reference Price (DRP) Listing Service
POST /v1/markets/sgp/data/daily-reference-price
5.10.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.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. SGP Daily Trade Volume Listing Service
POST /v1/markets/sgp/data/daily-trade-volume
5.11.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.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. 4 Coded Transaction Listing Service
POST /v1/markets/sgp/data/four-code-operation
5.12.1. Description
It shows to the 4 Coded Additional Balancer Operations aimed at eliminating the imbalance in the network.
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. Retroactive Adjustment Item Amount Listing Service
POST /v1/markets/sgp/data/gddk-amount
5.13.1. Description
It shows total Credit or Payable Amount in the new invoice with the retrospective corrections made in the previous period invoices.
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. 1 Coded Transaction Listing Service
POST /v1/markets/sgp/data/green-code-operation
5.14.1. Description
It shows to Additional Balancer Operations with Code 1 aiming to eliminate the imbalance in the network.
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. Matched Quantity for DRP Listing Service
POST /v1/markets/sgp/data/grf-match-quantity
5.15.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.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. GRP Trade Volume Listing Service
POST /v1/markets/sgp/data/grf-trade-volume
5.16.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.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. SGP Imbalance Amount Listing Service
POST /v1/markets/sgp/data/imbalance-amount
5.17.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.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. Imbalance System Listing Service
POST /v1/markets/sgp/data/imbalance-system
5.18.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.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 |
Body |
body |
Request Body. |
5.18.3. Responses
| HTTP Code | Description | Schema |
|---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.18.4. Consumes
-
application/json -
application/xml
5.18.5. Produces
-
application/json -
application/xml
5.18.6. Tags
-
markets-sgp-data-controller
5.19. Sgp Last Reconciliation Date Service
GET /v1/markets/sgp/data/last-reconciliation-date
5.19.1. Description
Sgp Last Reconciliation Date Service
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 |
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. Produces
-
application/json -
application/xml
5.19.5. Tags
-
markets-sgp-data-controller
5.20. SGP Total Matched Quantity Listing Service
POST /v1/markets/sgp/data/match-quantity
5.20.1. Description
It shows Total Amount of matches in daily and weekly contracts in the Spot Natural Gas Market.
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. 3 Coded Transaction Listing Service
POST /v1/markets/sgp/data/orange-code-operation
5.21.1. Description
It shows to the 3 Coded Additional Balancer Operations aimed at eliminating the imbalance in the network.
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. Physical Realization Service
POST /v1/markets/sgp/data/physical-realization
5.22.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.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. SGP Price Listing Service
POST /v1/markets/sgp/data/sgp-price
5.23.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.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. Shipper’s Imbalance Quantity Listing Service
POST /v1/markets/sgp/data/shippers-imbalance-quantity
5.24.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.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. System Balance Listing Service
POST /v1/markets/sgp/data/system-direction
5.25.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.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 Total Trade Volume Listing Service
POST /v1/markets/sgp/data/total-trade-volume
5.26.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.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. SGP Transaction History Listing Service
POST /v1/markets/sgp/data/transaction-history
5.27.1. Description
It shows Matching Times of spot contracts.
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. Virtual Realization Listing Service
POST /v1/markets/sgp/data/virtual-realization
5.28.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.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. SGP Weekly Matched Quantity Listing Service
POST /v1/markets/sgp/data/weekly-matched-quantity
5.29.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.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. Weekly Reference Price (WRP) Listing Service
POST /v1/markets/sgp/data/weekly-ref-price
5.30.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.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. SGP Weekly Trade Volume Listing Service
POST /v1/markets/sgp/data/weekly-trade-volume
5.31.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.31.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.31.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.31.4. Consumes
-
application/json -
application/xml
5.31.5. Produces
-
application/json -
application/xml
5.31.6. Tags
-
markets-sgp-data-controller
5.32. Announcement For TSO Transactions Export Service
POST /v1/markets/sgp/export/additional-notifications
5.32.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.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. Balancing Gas Price (BGP) Export Service
POST /v1/markets/sgp/export/balancing-gas-price
5.33.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.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. Neutralization Item Export Service
POST /v1/markets/sgp/export/bast
5.34.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.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. 2 Coded Transaction Export Service
POST /v1/markets/sgp/export/blue-code-operation
5.35.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.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-matched-quantity
5.36.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.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 Matched Quantity Export Service
POST /v1/markets/sgp/export/daily-reference-price
5.37.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.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. SGP Daily Trade Volume Export Service
POST /v1/markets/sgp/export/daily-trade-volume
5.38.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.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. 4 Coded Transaction Export Service
POST /v1/markets/sgp/export/four-code-operation
5.39.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.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. Retroactive Adjustment Item Amount Export Service
POST /v1/markets/sgp/export/gddk-amount
5.40.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.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. 1 Coded Transaction Export Service
POST /v1/markets/sgp/export/green-code-operation
5.41.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.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. Matched Quantity for DRP Export Service
POST /v1/markets/sgp/export/grf-match-quantity
5.42.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.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. GRP Trade Volume Export Service
POST /v1/markets/sgp/export/grf-trade-volume
5.43.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.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. SGP Imbalance Amount Export Service
POST /v1/markets/sgp/export/imbalance-amount
5.44.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.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. Imbalance System Export Service
POST /v1/markets/sgp/export/imbalance-system
5.45.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.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. Weekly Reference Price (WRP) Export Service
POST /v1/markets/sgp/export/match-quantity
5.46.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.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. 3 Coded Transaction Export Service
POST /v1/markets/sgp/export/orange-code-operation
5.47.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.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. Physical Realization Export Service
POST /v1/markets/sgp/export/physical-realization
5.48.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.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. SGP Price Export Service
POST /v1/markets/sgp/export/sgp-price
5.49.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.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. Shipper’s Imbalance Quantity Export Service
POST /v1/markets/sgp/export/shippers-imbalance-quantity
5.50.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.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. System Balance Export Service
POST /v1/markets/sgp/export/system-direction
5.51.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.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 Total Trade Volume Export Service
POST /v1/markets/sgp/export/total-trade-volume
5.52.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.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. SGP Transaction History Export Service
POST /v1/markets/sgp/export/transaction-history
5.53.1. Description
It shows Matching Times of spot contracts. Exports SGP Transaction History 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. Virtual Realization Export Service
POST /v1/markets/sgp/export/virtual-realization
5.54.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.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. SGP Weekly Matched Quantity Export Service
POST /v1/markets/sgp/export/weekly-matched-quantity
5.55.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.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. Weekly Reference Price (WRP) Export Service
POST /v1/markets/sgp/export/weekly-ref-price
5.56.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.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. SGP Weekly Trade Volume Export Service
POST /v1/markets/sgp/export/weekly-trade-volume
5.57.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.57.2. Parameters
| Type | Name | Description | Schema |
|---|---|---|---|
Body |
body |
Request Body. |
5.57.3. Responses
| HTTP Code | Description | Schema |
|---|---|---|
200 |
successful operation |
5.57.4. Consumes
-
application/json -
application/xml
5.57.5. Produces
-
application/json -
application/xml
5.57.6. Tags
-
markets-sgp-export-controller
5.58. GFM Contract Price Summary Data Listing Service
POST /v1/markets/vgp/data/contract-price-summary
5.58.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.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 |
Body |
body |
Request Body. |
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. Consumes
-
application/json -
application/xml
5.58.5. Produces
-
application/json -
application/xml
5.58.6. Tags
-
markets-vgp-data-controller
5.59. Delivery Period
GET /v1/markets/vgp/data/delivery-period
5.59.1. Description
Delivery Period
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. Delivery Year
GET /v1/markets/vgp/data/delivery-year
5.60.1. Description
Delivery Year
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 |
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. Produces
-
application/json -
application/xml
5.60.5. Tags
-
markets-vgp-data-controller
5.61. GFM Daily Index Price Data Listing Service
POST /v1/markets/vgp/data/ggf
5.61.1. Description
It shows Weighted Average Price of day-ahead and intraday pairings in the Futures Natural Gas Market (VGP).
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 Matching Amount (1000.Sm³/day) Data Listing Service
POST /v1/markets/vgp/data/matching-quantity
5.62.1. Description
It shows Weighted Average Prices of Bids and/or Matches of Futures Contracts.
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 Open Position (1000.Sm³/day) Data Listing Service
POST /v1/markets/vgp/data/open-position
5.63.1. Description
It shows the Spread Amount of the Futures Contracts for Bid and Sell Matches.
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 Order Prices Data Listing Service
POST /v1/markets/vgp/data/vgp-offer-price
5.64.1. Description
It shows Bid Price Statistics of futures contracts.
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 Transaction History Data Listing Service
POST /v1/markets/vgp/data/vgp-transaction-history
5.65.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.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 Trade Volume Data Listing Service
POST /v1/markets/vgp/data/vgp-volume
5.66.1. Description
It shows Matched Amount of futures contracts.
5.66.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.66.3. Responses
| HTTP Code | Description | Schema |
|---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.66.4. Consumes
-
application/json -
application/xml
5.66.5. Produces
-
application/json -
application/xml
5.66.6. Tags
-
markets-vgp-data-controller
5.67. GFM Contract Price Summary Export Service
POST /v1/markets/vgp/export/contract-price-summary
5.67.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.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 Daily Index Price Data Export Service
POST /v1/markets/vgp/export/ggf
5.68.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.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 Matching Amount (1000.Sm³/day) Export Service
POST /v1/markets/vgp/export/matching-quantity
5.69.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.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 Open Position (1000.Sm³/day) Export Service
POST /v1/markets/vgp/export/open-position
5.70.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.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 Order Prices Export Service
POST /v1/markets/vgp/export/vgp-offer-price
5.71.1. Description
It shows Bid Price Statistics of futures contracts.Exports GFM Order Prices 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 Transaction History Export Service
POST /v1/markets/vgp/export/vgp-transaction-history
5.72.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.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. GFM Trade Volume Export Service
POST /v1/markets/vgp/export/vgp-volume
5.73.1. Description
It shows Matched Amount of futures contracts.Exports GFM Trade Volume datas as XLSX, CSV or PDF formats.
5.73.2. Parameters
| Type | Name | Description | Schema |
|---|---|---|---|
Body |
body |
Request Body. |
5.73.3. Responses
| HTTP Code | Description | Schema |
|---|---|---|
200 |
successful operation |
5.73.4. Consumes
-
application/json -
application/xml
5.73.5. Produces
-
application/json -
application/xml
5.73.6. Tags
-
markets-vgp-export-controller
5.74. Capacity Point Service
POST /v1/transmission/data/capacity-point
5.74.1. Description
Capacity Point Service
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. Daily Actualization Amount Listing Service
POST /v1/transmission/data/daily-actualization-amount
5.75.1. Description
It shows amount of natural gas transferred from the network to the natural gas storage facilities.
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 Ahead (UDN) Listing Service
POST /v1/transmission/data/day-ahead
5.76.1. Description
It shows Bilateral agreement refers to the statement of quantity.
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. Day End (UDN) Listing Service
POST /v1/transmission/data/day-end
5.77.1. Description
Day End (UDN).
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. Entry Nomination Listing Service
POST /v1/transmission/data/entry-nomination
5.78.1. Description
It shows physical point based entry 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. Exit Nomination Listing Service
POST /v1/transmission/data/exit-nomination
5.79.1. Description
It shows Physical Point-based output quantity notification.
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 Entry Amount Listing Service
POST /v1/transmission/data/max-entry-amount
5.80.1. Description
It shows amount of natural gas expected to be added to 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. Max Exit Amount Listing Service
POST /v1/transmission/data/max-exit-amount
5.81.1. Description
It shows amount of natural gas expected to come out of the transmission network according to the Transmission Company capacity plan.
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. Entry Amount Listing Service
POST /v1/transmission/data/realization-entry-amount
5.82.1. Description
It shows result of the Purchase transaction of the Shippers shows the actual amount of natural gas added to 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. Exit Amount Listing Service
POST /v1/transmission/data/realization-exit-amount
5.83.1. Description
It shows result of the Shipper’s Sales transaction shows the actual amount of natural gas released from the system.
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. Entry Amount Listing Service
POST /v1/transmission/data/rezerve-entry-amount
5.84.1. Description
It shows amount of natural gas expected to be added to 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. Exit Amount Listing Service
POST /v1/transmission/data/rezerve-exit-amount
5.85.1. Description
It shows amount of natural gas expected to come out of the transmission network according to the Transmission Company reservation program.
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. Stock Amount Listing Service
POST /v1/transmission/data/stock-amount
5.86.1. Description
It shows daily amount of natural gas trapped in the Transmission Network.
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 |
Body |
body |
Request Body. |
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. Consumes
-
application/json -
application/xml
5.86.5. Produces
-
application/json -
application/xml
5.86.6. Tags
-
transmission-data-controller
5.87. Storage Facility Service
GET /v1/transmission/data/storage-facility
5.87.1. Description
Storage Facility Service
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 |
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. Produces
-
application/json -
application/xml
5.87.5. Tags
-
transmission-data-controller
5.88. Transfer Listing Service
POST /v1/transmission/data/transfer
5.88.1. Description
It shows Physical Point-based Bilateral agreement refers to the amount notification.
5.88.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.88.3. Responses
| HTTP Code | Description | Schema |
|---|---|---|
200 |
Operation successful |
|
400 |
Bad request. Please check your request |
No Content |
500 |
Unexpected error. Please contact EXIST |
No Content |
5.88.4. Consumes
-
application/json -
application/xml
5.88.5. Produces
-
application/json -
application/xml
5.88.6. Tags
-
transmission-data-controller
5.89. Daily Actualization Amount Export Service
POST /v1/transmission/export/daily-actualization-amount
5.89.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.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 Ahead (UDN) Export Service
POST /v1/transmission/export/day-ahead
5.90.1. Description
It shows Bilateral agreement refers to the statement of quantity. Exports Day Ahead (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. Day End (UDN) Export Service
POST /v1/transmission/export/day-end
5.91.1. Description
Day End (UDN). Exports Day End (UDN) 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. Entry Nomination Export Service
POST /v1/transmission/export/entry-nomination
5.92.1. Description
It shows physical point based entry quantity notification. Exports Entry 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. Exit Nomination Export Service
POST /v1/transmission/export/exit-nomination
5.93.1. Description
It shows Physical Point-based output quantity notification. Exports Exit Nomination 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 Entry Amount Export Service
POST /v1/transmission/export/max-entry-amount
5.94.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.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. Max Exit Amount Export Service
POST /v1/transmission/export/max-exit-amount
5.95.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.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. Entry Amount Export Service
POST /v1/transmission/export/realization-entry-amount
5.96.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.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. Exit Amount Export Service
POST /v1/transmission/export/realization-exit-amount
5.97.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.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. Entry Amount Export Service
POST /v1/transmission/export/rezerve-entry-amount
5.98.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.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. Exit Amount Export Service
POST /v1/transmission/export/rezerve-exit-amount
5.99.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.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. Stock Amount Export Service
POST /v1/transmission/export/stock-amount
5.100.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.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
5.101. Transfer Export Service
POST /v1/transmission/export/transfer
5.101.1. Description
It shows Physical Point-based Bilateral agreement refers to the amount notification. Exports Transfer datas as XLSX, CSV or PDF formats.
5.101.2. Parameters
| Type | Name | Description | Schema |
|---|---|---|---|
Body |
body |
Request Body. |
5.101.3. Responses
| HTTP Code | Description | Schema |
|---|---|---|
200 |
successful operation |
5.101.4. Consumes
-
application/json -
application/xml
5.101.5. Produces
-
application/json -
application/xml
5.101.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. AnnouncementsRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.6. AnnouncementsResponseDataDto
| Name | Description | Schema |
|---|---|---|
descriptionEn |
NAME |
string |
descriptionTr |
NAME |
string |
startDate |
|
string (date-time) |
titleEn |
NAME |
string |
titleTr |
NAME |
string |
6.7. AnnouncementsResponseDto
| Name | Schema |
|---|---|
items |
< AnnouncementsResponseDataDto > array |
page |
6.8. 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.9. 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.10. BalancingGasPriceRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.11. BalancingGasPriceResponseDto
| Name | Schema |
|---|---|
items |
< BalancingGasPriceDataDto > array |
page |
6.12. BastDataDto
| Name | Description | Schema |
|---|---|---|
bast |
Neutralization Item(TL) |
number |
gasDay |
Gas Day |
string (date-time) |
6.13. BastExportRequestDto
| Name | Description | Schema |
|---|---|---|
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
period |
Period |
string (date-time) |
6.14. BastRequestDto
| Name | Description | Schema |
|---|---|---|
page |
Sayfalama bilgisi. |
|
period |
Period |
string (date-time) |
6.15. BastResponseDto
| Name | Schema |
|---|---|
isAllowanceFinal |
boolean |
items |
< BastDataDto > array |
page |
|
statistics |
6.16. BastStatisticsDto
| Name | Schema |
|---|---|
totalAmount |
number |
6.17. CapacityPointRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
pointType |
INPUT |
enum (INPUT, OUTPUT) |
startDate |
|
string (date-time) |
6.18. CapacityPointResponseDataDto
| Name | Description | Schema |
|---|---|---|
pointId |
Point Id Of Point Name Information. |
integer (int64) |
pointName |
1234 |
string |
6.19. CapacityPointResponseDto
| Name | Schema |
|---|---|
items |
< CapacityPointResponseDataDto > array |
page |
6.20. 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.21. 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.22. 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.23. ContractPriceSummaryResponseDto
| Name | Schema |
|---|---|
items |
< ContractPriceSummaryResponseDataDto > array |
page |
6.24. 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.25. DailyActualizationAmountRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
storageFacilityId |
Id Of Storage Facility |
integer (int64) |
6.26. DailyActualizationAmountResponseDataDto
| Name | Description | Schema |
|---|---|---|
date |
|
string (date-time) |
injection |
Max Entry Amount Transfer |
integer (int64) |
reproduction |
Max Entry Amount Transfer |
integer (int64) |
6.27. DailyActualizationAmountResponseDto
| Name | Schema |
|---|---|
items |
< DailyActualizationAmountResponseDataDto > array |
page |
6.28. 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.29. DailyMatchedQuantityRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.30. 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.31. DailyMatchedQuantityResponseDto
| Name | Schema |
|---|---|
items |
< DailyMatchedQuantityResponseDataDto > array |
page |
6.32. 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.33. DailyReferencePriceRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.34. 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.35. DailyReferencePriceResponseDto
| Name | Schema |
|---|---|
items |
< DailyReferencePriceResponseDataDto > array |
page |
|
statistics |
6.36. DailyReferencePriceStatisticsDto
| Name | Schema |
|---|---|
avgPriceEur |
number |
avgPriceTl |
number |
avgPriceUsd |
number |
avgPriceUsdMmBtu |
number |
6.37. 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.38. DailyTradeVolumeRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.39. DailyTradeVolumeResponseDataDto
| Name | Description | Schema |
|---|---|---|
contractName |
Contract |
string |
dayAfterTradeValue |
GEIH |
number |
dayAheadTradeValue |
GOIH |
number |
intraDayTradeValue |
GIIH |
number |
tradeValueTotal |
Total |
number |
6.40. DailyTradeVolumeResponseDto
| Name | Schema |
|---|---|
items |
< DailyTradeVolumeResponseDataDto > array |
page |
6.41. DayAheadResponseDataDto
| Name | Description | Schema |
|---|---|---|
date |
|
string (date-time) |
dayAheadAmount |
Day Ahead Amount |
number |
6.42. DayAheadResponseDto
| Name | Schema |
|---|---|
items |
< DayAheadResponseDataDto > array |
page |
|
totals |
6.43. DayEndResponseDataDto
| Name | Description | Schema |
|---|---|---|
date |
|
string (date-time) |
dayEndAmount |
Day End Amount |
number |
6.44. DayEndResponseDto
| Name | Schema |
|---|---|
items |
< DayEndResponseDataDto > array |
page |
|
totals |
6.45. DeliveryPeriodResponseDataDto
| Name | Description | Schema |
|---|---|---|
deliveryPeriod |
NAME |
string |
6.46. DeliveryPeriodResponseDto
| Name | Schema |
|---|---|
items |
< DeliveryPeriodResponseDataDto > array |
page |
6.47. DeliveryYearResponseDataDto
| Name | Description | Schema |
|---|---|---|
deliveryYear |
NAME |
string |
6.48. DeliveryYearResponseDto
| Name | Schema |
|---|---|
items |
< DeliveryYearResponseDataDto > array |
page |
6.49. 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.50. EntryNominationRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.51. EntryNominationResponseDataDto
| Name | Description | Schema |
|---|---|---|
date |
|
string (date-time) |
entryNominationAmount |
Transport Entry Amount |
number |
6.52. EntryNominationResponseDto
| Name | Schema |
|---|---|
items |
< EntryNominationResponseDataDto > array |
page |
|
totals |
6.53. 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.54. ExitNominationRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.55. ExitNominationResponseDataDto
| Name | Description | Schema |
|---|---|---|
date |
|
string (date-time) |
exitNominationAmount |
Transport Exit Amount |
number |
6.56. ExitNominationResponseDto
| Name | Schema |
|---|---|
items |
< ExitNominationResponseDataDto > array |
page |
|
totals |
6.57. 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.58. 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.59. GddkAmountsRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.60. GddkAmountsResponseDto
| Name | Schema |
|---|---|
items |
< GddkAmountsDataDto > array |
page |
|
statistics |
6.61. GddkAmountsStatisticsDto
| Name | Schema |
|---|---|
credit |
number |
debt |
number |
6.62. 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.63. 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.64. 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.65. GgfResponseDto
| Name | Schema |
|---|---|
items |
< GgfResponseDataDto > array |
page |
6.66. 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.67. GrfMatchQuantityRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.68. GrfMatchQuantityResponseDataDto
| Name | Description | Schema |
|---|---|---|
amount |
Matched Quantity for DRP |
integer |
gasDay |
Gas Day |
string (date-time) |
6.69. GrfMatchQuantityResponseDto
| Name | Schema |
|---|---|
items |
< GrfMatchQuantityResponseDataDto > array |
page |
6.70. 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.71. GrfTradeVolumeRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.72. GrfTradeVolumeResponseDataDto
| Name | Description | Schema |
|---|---|---|
gasDay |
Gas Day |
string (date-time) |
tradeValue |
GRP Trade Volume (TL) |
number |
6.73. GrfTradeVolumeResponseDto
| Name | Schema |
|---|---|
items |
< GrfTradeVolumeResponseDataDto > array |
page |
6.74. 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.75. ImbalanceSystemRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.76. ImbalanceSystemResponseDataDto
| Name | Description | Schema |
|---|---|---|
gasDay |
Gas Day |
string (date-time) |
imbalance |
System Balance(stdm3) |
number |
6.77. ImbalanceSystemResponseDto
| Name | Schema |
|---|---|
items |
< ImbalanceSystemResponseDataDto > array |
page |
6.78. 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.79. MarketParticipantRequestDto
| Name | Description | Schema |
|---|---|---|
organizationId |
Organization id of the request |
integer (int32) |
page |
Sayfalama bilgisi. |
|
period |
Period |
string (date-time) |
6.80. MarketParticipantResponseDataDto
| Name | Description | Schema |
|---|---|---|
eic |
NAME |
string |
naturalGasMarketParticipation |
true |
boolean |
organizationName |
NAME |
string |
pkKod |
NAME |
integer (int64) |
tuzelKisilik |
true |
boolean |
vgpParticipation |
true |
boolean |
6.81. MarketParticipantResponseDto
| Name | Schema |
|---|---|
items |
< MarketParticipantResponseDataDto > array |
page |
6.82. MatchQuantityExportRequestDto
| 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.83. MatchQuantityRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.84. MatchQuantityResponseDataDto
| Name | Description | Schema |
|---|---|---|
gasDay |
Gas Day |
string (date-time) |
matchAmount |
Match Quantity |
integer |
6.85. MatchQuantityResponseDto
| Name | Schema |
|---|---|
items |
< MatchQuantityResponseDataDto > array |
page |
6.86. MaxEntryAmountExportRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
pointId |
Point Id Of Point Name Information. |
integer (int64) |
startDate |
|
string (date-time) |
6.87. MaxEntryAmountRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
pointId |
Point Id Of Point Name Information. |
integer (int64) |
startDate |
|
string (date-time) |
6.88. MaxEntryAmountResponseDataDto
| Name | Description | Schema |
|---|---|---|
date |
|
string (date-time) |
maxEntryAmount |
Max Entry Amount Transfer |
number |
6.89. MaxEntryAmountResponseDto
| Name | Schema |
|---|---|
items |
< MaxEntryAmountResponseDataDto > array |
page |
6.90. MaxExitAmountExportRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
pointId |
Point Id Of Point Name Information. |
integer (int64) |
startDate |
|
string (date-time) |
6.91. MaxExitAmountRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
pointId |
Point Id Of Point Name Information. |
integer (int64) |
startDate |
|
string (date-time) |
6.92. MaxExitAmountResponseDataDto
| Name | Description | Schema |
|---|---|---|
date |
|
string (date-time) |
maxExitAmount |
Max Exit Amount Transfer |
number |
6.93. MaxExitAmountResponseDto
| Name | Schema |
|---|---|
items |
< MaxExitAmountResponseDataDto > array |
page |
6.94. ModelAndView
| Name | Schema |
|---|---|
empty |
boolean |
model |
< string, object > map |
modelMap |
< string, object > map |
reference |
boolean |
status |
enum (CONTINUE, SWITCHING_PROTOCOLS, PROCESSING, CHECKPOINT, OK, CREATED, ACCEPTED, NON_AUTHORITATIVE_INFORMATION, NO_CONTENT, RESET_CONTENT, PARTIAL_CONTENT, MULTI_STATUS, ALREADY_REPORTED, IM_USED, MULTIPLE_CHOICES, MOVED_PERMANENTLY, FOUND, MOVED_TEMPORARILY, SEE_OTHER, NOT_MODIFIED, USE_PROXY, TEMPORARY_REDIRECT, PERMANENT_REDIRECT, BAD_REQUEST, UNAUTHORIZED, PAYMENT_REQUIRED, FORBIDDEN, NOT_FOUND, METHOD_NOT_ALLOWED, NOT_ACCEPTABLE, PROXY_AUTHENTICATION_REQUIRED, REQUEST_TIMEOUT, CONFLICT, GONE, LENGTH_REQUIRED, PRECONDITION_FAILED, PAYLOAD_TOO_LARGE, REQUEST_ENTITY_TOO_LARGE, URI_TOO_LONG, REQUEST_URI_TOO_LONG, UNSUPPORTED_MEDIA_TYPE, REQUESTED_RANGE_NOT_SATISFIABLE, EXPECTATION_FAILED, I_AM_A_TEAPOT, INSUFFICIENT_SPACE_ON_RESOURCE, METHOD_FAILURE, DESTINATION_LOCKED, UNPROCESSABLE_ENTITY, LOCKED, FAILED_DEPENDENCY, UPGRADE_REQUIRED, PRECONDITION_REQUIRED, TOO_MANY_REQUESTS, REQUEST_HEADER_FIELDS_TOO_LARGE, UNAVAILABLE_FOR_LEGAL_REASONS, INTERNAL_SERVER_ERROR, NOT_IMPLEMENTED, BAD_GATEWAY, SERVICE_UNAVAILABLE, GATEWAY_TIMEOUT, HTTP_VERSION_NOT_SUPPORTED, VARIANT_ALSO_NEGOTIATES, INSUFFICIENT_STORAGE, LOOP_DETECTED, BANDWIDTH_LIMIT_EXCEEDED, NOT_EXTENDED, NETWORK_AUTHENTICATION_REQUIRED) |
view |
|
viewName |
string |
6.95. NominationStatisticsDto
| Name | Schema |
|---|---|
entryNominationTotal |
number |
exitNominationTotal |
number |
transferTotal |
number |
6.96. OpenPositionExportRequestDto
| 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.97. OpenPositionRequestDto
| 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.98. OpenPositionResponseDataDto
| Name | Description | Schema |
|---|---|---|
contractName |
Contract |
string |
openPosition |
Total Trade Volume |
number |
transactionDate |
Gas Day |
string (date-time) |
6.99. OpenPositionResponseDto
| Name | Schema |
|---|---|
items |
< OpenPositionResponseDataDto > array |
page |
6.100. Page
| Name | Description | Schema |
|---|---|---|
number |
Related page number |
integer (int64) |
size |
Item count for a single page |
integer (int64) |
sort |
Special sorting configuration |
|
total |
Total item count for the frontend apps, calculated and sent from the server side. |
integer (int64) |
6.101. ParticipantListResponseDataDto
| Name | Description | Schema |
|---|---|---|
id |
1234 |
integer (int32) |
organizationName |
NAME |
string |
6.102. ParticipantListResponseDto
| Name | Schema |
|---|---|
items |
< ParticipantListResponseDataDto > array |
page |
6.103. PhysicalRealizationExportRequestDto
| 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.104. PhysicalRealizationRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.105. PhysicalRealizationResponseDataDto
| Name | Description | Schema |
|---|---|---|
date |
|
string (date-time) |
physicalEntry |
Physical Entry (Sm3) |
number |
physicalExit |
Physical Exit (Sm3) |
number |
6.106. PhysicalRealizationResponseDto
| Name | Schema |
|---|---|
isAllowanceFinal |
boolean |
items |
< PhysicalRealizationResponseDataDto > array |
page |
|
statistics |
6.107. PhysicalRealizationStatisticsDto
| Name | Schema |
|---|---|
totalEntry |
number |
totalExit |
number |
6.108. RealizationAmountStatisticsDto
| Name | Schema |
|---|---|
realizedTotal |
number |
6.109. RealizationEntryAmountExportRequestDto
| 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.110. RealizationEntryAmountRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.111. RealizationEntryAmountResponseDataDto
| Name | Description | Schema |
|---|---|---|
date |
|
string (date-time) |
entryAmount |
Entry Amount |
number |
6.112. RealizationEntryAmountResponseDto
| Name | Schema |
|---|---|
items |
< RealizationEntryAmountResponseDataDto > array |
page |
|
totals |
6.113. RealizationExitAmountExportRequestDto
| 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.114. RealizationExitAmountRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.115. RealizationExitAmountResponseDataDto
| Name | Description | Schema |
|---|---|---|
date |
|
string (date-time) |
exitAmount |
Exit Amount |
number |
6.116. RealizationExitAmountResponseDto
| Name | Schema |
|---|---|
items |
< RealizationExitAmountResponseDataDto > array |
page |
|
totals |
6.117. RezerveEntryAmountExportRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
pointId |
Point Id Of Point Name Information. |
integer (int64) |
startDate |
|
string (date-time) |
6.118. RezerveEntryAmountRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
pointId |
Point Id Of Point Name Information. |
integer (int64) |
startDate |
|
string (date-time) |
6.119. RezerveEntryAmountResponseDataDto
| Name | Description | Schema |
|---|---|---|
date |
|
string (date-time) |
rezerveEntryAmount |
Entry Amount |
number |
6.120. RezerveEntryAmountResponseDto
| Name | Schema |
|---|---|
items |
< RezerveEntryAmountResponseDataDto > array |
page |
6.121. RezerveExitAmountExportRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
pointId |
Point Id Of Point Name Information. |
integer (int64) |
startDate |
|
string (date-time) |
6.122. RezerveExitAmountRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
pointId |
Point Id Of Point Name Information. |
integer (int64) |
startDate |
|
string (date-time) |
6.123. RezerveExitAmountResponseDataDto
| Name | Description | Schema |
|---|---|---|
date |
|
string (date-time) |
rezerveExitAmount |
Entry Amount |
number |
6.124. RezerveExitAmountResponseDto
| Name | Schema |
|---|---|
items |
< RezerveExitAmountResponseDataDto > array |
page |
6.125. SortDTO
| Name | Description | Schema |
|---|---|---|
direction |
Sort direction (ASC or DESC) |
enum (ASC, DESC) |
field |
Custom sorting field name |
string |
6.126. StockAmountExportRequestDto
| 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.127. StockAmountRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.128. StockAmountResponseDataDto
| Name | Description | Schema |
|---|---|---|
date |
|
string (date-time) |
stockAmount |
Exit Amount |
number |
6.129. StockAmountResponseDto
| Name | Schema |
|---|---|
items |
< StockAmountResponseDataDto > array |
page |
6.130. StorageFacilityResponseDataDto
| Name | Description | Schema |
|---|---|---|
storageFacilityId |
1234 |
integer (int64) |
storageFacilityName |
NAME |
string |
6.131. StorageFacilityResponseDto
| Name | Schema |
|---|---|
items |
< StorageFacilityResponseDataDto > array |
page |
6.132. StpBlueCodeDataDto
| Name | Description | Schema |
|---|---|---|
amount |
Matched Quantity |
number |
contractName |
Contract |
string |
weightedAverage |
Weighted Average Price |
number |
6.133. StpBlueCodeExportRequestDto
| 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.134. StpBlueCodeRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.135. StpBlueCodeResponseDto
| Name | Schema |
|---|---|
items |
< StpBlueCodeDataDto > array |
page |
6.136. StpFourCodeDataDto
| Name | Description | Schema |
|---|---|---|
amount |
Matched Quantity |
number |
contractName |
Contract |
string |
weightedAverage |
Weighted Average Price |
number |
6.137. StpFourCodeExportRequestDto
| 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.138. StpFourCodeRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.139. StpFourCodeResponseDto
| Name | Schema |
|---|---|
items |
< StpFourCodeDataDto > array |
page |
6.140. StpGreenCodeDataDto
| Name | Description | Schema |
|---|---|---|
amount |
Matched Quantity |
integer |
contractName |
Contract |
string |
gasDay |
Effected Gas Day |
string (date-time) |
transactionDate |
Transaction Date |
string (date-time) |
weightedAverage |
Weighted Average Price |
number |
6.141. StpGreenCodeExportRequestDto
| 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.142. StpGreenCodeRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.143. StpGreenCodeResponseDto
| Name | Schema |
|---|---|
items |
< StpGreenCodeDataDto > array |
page |
6.144. StpImbalanceAmountExportRequestDto
| Name | Description | Schema |
|---|---|---|
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
period |
Period |
string (date-time) |
6.145. StpImbalanceAmountRequestDto
| Name | Description | Schema |
|---|---|---|
page |
Sayfalama bilgisi. |
|
period |
Period |
string (date-time) |
6.146. StpImbalanceAmountResponseDataDto
| Name | Description | Schema |
|---|---|---|
gasDay |
Gas Day |
string (date-time) |
negativeImbalance |
Negative Imbalance Amount(TL) |
number |
positiveImbalance |
Positive Imbalance Amount(TL) |
number |
6.147. StpImbalanceAmountResponseDto
| Name | Schema |
|---|---|
items |
< StpImbalanceAmountResponseDataDto > array |
page |
|
statistics |
6.148. StpImbalanceAmountResponseTotalDataDto
| Name | Schema |
|---|---|
gasDay |
string (date-time) |
totalOfNegativeImbalance |
number |
totalOfPositiveImbalance |
number |
6.149. StpLatestReconciliationDateResponseDto
| Name | Description | Schema |
|---|---|---|
stpLatestReconciliationDate |
Sgp Last Reconciliation Date |
string (date-time) |
6.150. StpOrangeCodeDataDto
| Name | Description | Schema |
|---|---|---|
amount |
Matched Quantity |
integer |
contractName |
Contract |
string |
gasDay |
Effected Gas Day |
string (date-time) |
transactionDate |
Transaction Date |
string (date-time) |
weightedAverage |
Weighted Average Price |
number |
6.151. StpOrangeCodeExportRequestDto
| 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.152. StpOrangeCodeRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.153. StpOrangeCodeResponseDto
| Name | Schema |
|---|---|
items |
< StpOrangeCodeDataDto > array |
page |
6.154. StpPriceDataDto
| Name | Description | Schema |
|---|---|---|
dayAfterPrice |
After Day Price (ADP)(TL/1000 sm3) |
number |
dayAheadPrice |
Day Ahead Price (DAP)(TL/1000 sm3) |
number |
gasDay |
Gas Day |
string (date-time) |
intraDayPrice |
Intraday Price (IDP)(TL/1000 sm3) |
number |
weightedAverage |
Weighted Average Price(TL/1000 sm3) |
number |
6.155. StpPriceExportRequestDto
| 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.156. StpPriceRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.157. StpPriceResponseDto
| Name | Schema |
|---|---|
items |
< StpPriceDataDto > array |
page |
6.158. StpShippersImbalanceQuantityExportRequestDto
| Name | Description | Schema |
|---|---|---|
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
|
period |
Period |
string (date-time) |
6.159. StpShippersImbalanceQuantityRequestDto
| Name | Description | Schema |
|---|---|---|
page |
Sayfalama bilgisi. |
|
period |
Period |
string (date-time) |
6.160. StpShippersImbalanceQuantityResponseDataDto
| Name | Description | Schema |
|---|---|---|
gasDay |
Gas Day |
string (date-time) |
negativeImbalance |
Negative Imbalance Quantity (cm3) |
number |
positiveImbalance |
Positive Imbalance Quantity (cm3) |
number |
6.161. StpShippersImbalanceQuantityResponseDto
| Name | Schema |
|---|---|
isAllowanceFinal |
boolean |
items |
|
page |
6.162. StpWeeklyRefPriceDataDto
| Name | Description | Schema |
|---|---|---|
week |
WEEK |
string |
weekTotalPrice |
HT |
number |
weekdayPrice |
HI |
number |
weekendPrice |
HS |
number |
weeklyRefPrice |
HRF |
number |
6.163. StpWeeklyRefPriceExportRequestDto
| 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.164. StpWeeklyRefPriceRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.165. StpWeeklyRefPriceResponseDto
| Name | Schema |
|---|---|
items |
< StpWeeklyRefPriceDataDto > array |
page |
6.166. SystemDirectionExportRequestDto
| 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.167. SystemDirectionRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.168. SystemDirectionResponseDataDto
| Name | Description | Schema |
|---|---|---|
date |
|
string (date-time) |
systemDirection |
System Balance |
string |
6.169. SystemDirectionResponseDto
| Name | Schema |
|---|---|
isAllowanceFinal |
boolean |
items |
< SystemDirectionResponseDataDto > array |
page |
6.170. TotalTradeVolumeExportRequestDto
| 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.171. TotalTradeVolumeRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.172. TotalTradeVolumeResponseDataDto
| Name | Description | Schema |
|---|---|---|
gasDay |
Gas Day |
string (date-time) |
tradeVolume |
Total Trade Volume |
number |
6.173. TotalTradeVolumeResponseDto
| Name | Schema |
|---|---|
items |
< TotalTradeVolumeResponseDataDto > array |
page |
6.174. TransactionHistoryDataDto
| Name | Description | Schema |
|---|---|---|
contractName |
Contract Name |
string |
date |
Date |
string (date-time) |
price |
Matched Price |
number |
quantity |
Matched Quantity |
integer |
time |
|
string (date-time) |
6.175. TransactionHistoryExportRequestDto
| 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.176. TransactionHistoryRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.177. TransactionHistoryResponseDto
| Name | Schema |
|---|---|
items |
< TransactionHistoryDataDto > array |
page |
6.178. TransferResponseDataDto
| Name | Description | Schema |
|---|---|---|
date |
|
string (date-time) |
transfer |
Day End Amount |
number |
6.179. TransferResponseDto
| Name | Schema |
|---|---|
items |
< TransferResponseDataDto > array |
page |
|
totals |
6.180. VgpMatchingQuantityDataDto
| Name | Description | Schema |
|---|---|---|
contractName |
Contract name |
string |
date |
Transaction date |
string (date-time) |
marketMatchingQuantity |
Matching Amount(1000.Sm3/day) |
number |
6.181. VgpMatchingQuantityExportRequestDto
| 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.182. VgpMatchingQuantityRequestDto
| 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.183. VgpMatchingQuantityResponseDto
| Name | Schema |
|---|---|
items |
< VgpMatchingQuantityDataDto > array |
page |
6.184. VgpOfferPriceDataDto
| Name | Description | Schema |
|---|---|---|
bestBuyPrice |
VALUE_DATA_VGP_OFFER_PRICE_BESTBUYPRICE |
number |
bestSellPrice |
Best Ask Price (TL/1000.Sm3) |
number |
contractName |
Contract Name |
string |
deliveryPeriod |
VALUE_DATA_VGP_OFFER_PRICE_DELIVERYPERIOD |
string |
fdo |
Change Rate by Last Match Price% |
number |
lastMatchPrice |
Last Matching Price(TL/1000.Sm3) |
number |
6.185. VgpOfferPriceExportRequestDto
| Name | Description | Schema |
|---|---|---|
exportType |
XLSX, CSV ya da PDF |
enum (XLSX, CSV, PDF) |
page |
Sayfalama bilgisi. |
6.186. VgpOfferPriceRequestDto
| Name | Description | Schema |
|---|---|---|
page |
Sayfalama bilgisi. |
6.187. VgpOfferPriceResponseDto
| Name | Schema |
|---|---|
items |
< VgpOfferPriceDataDto > array |
page |
6.188. VgpTransactionHistoryExportRequestDto
| 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.189. VgpTransactionHistoryRequestDto
| 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.190. VgpTransactionHistoryResponseDataDto
| Name | Description | Schema |
|---|---|---|
contractName |
Contract Name |
string |
date |
Transaction Date |
string (date-time) |
matchTime |
Transaction Time |
string (date-time) |
matchingPrice |
Matching Price(TL/1000.Sm3) |
number |
matchingQuantity |
Matching Amount(TL/1000.Sm3) |
number |
6.191. VgpTransactionHistoryResponseDto
| Name | Schema |
|---|---|
items |
< VgpTransactionHistoryResponseDataDto > array |
page |
6.192. VgpVolumeDataDto
| Name | Description | Schema |
|---|---|---|
contractName |
Contract name |
string |
date |
Transaction date |
string (date-time) |
volume |
Trading Volume |
number |
6.193. VgpVolumeExportRequestDto
| 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.194. VgpVolumeRequestDto
| 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.195. VgpVolumeResponseDto
| Name | Schema |
|---|---|
items |
< VgpVolumeDataDto > array |
page |
6.196. View
| Name | Schema |
|---|---|
contentType |
string |
6.197. VirtualRealizationExportRequestDto
| 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.198. VirtualRealizationRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.199. VirtualRealizationResponseDataDto
| Name | Description | Schema |
|---|---|---|
date |
|
string (date-time) |
virtualEntry |
Virtual Entry (Sm3) |
number |
virtualExit |
Virtual Exit (Sm3) |
number |
6.200. VirtualRealizationResponseDto
| Name | Schema |
|---|---|
isAllowanceFinal |
boolean |
items |
< VirtualRealizationResponseDataDto > array |
page |
|
statistics |
6.201. VirtualRealizationStatisticsDto
| Name | Schema |
|---|---|
totalEntry |
number |
totalExit |
number |
6.202. VirtualTradeExportRequestDto
| 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.203. VirtualTradeRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.204. VirtualTradeStatisticsDto
| Name | Schema |
|---|---|
dayAheadTotal |
number |
dayEndTotal |
number |
transferTotal |
number |
6.205. WeeklyMatchQuantityExportRequestDto
| 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.206. WeeklyMatchQuantityRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.207. WeeklyMatchQuantityResponseDataDto
| Name | Description | Schema |
|---|---|---|
emTotal |
TOTAL |
number |
hiem |
HIEM |
number |
hsem |
HSEM |
number |
htem |
HTEM |
number |
week |
WEEK |
string |
6.208. WeeklyMatchQuantityResponseDto
| Name | Schema |
|---|---|
items |
< WeeklyMatchQuantityResponseDataDto > array |
page |
6.209. WeeklyTradeVolumeDataDto
| Name | Description | Schema |
|---|---|---|
hiih |
HIIH |
number |
hsih |
HSIH |
number |
htih |
HTIH |
number |
ihTotal |
TOTAL |
number |
week |
WEEK |
string |
6.210. WeeklyTradeVolumeExportRequestDto
| 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.211. WeeklyTradeVolumeRequestDto
| Name | Description | Schema |
|---|---|---|
endDate |
|
string (date-time) |
page |
Sayfalama bilgisi. |
|
startDate |
|
string (date-time) |
6.212. WeeklyTradeVolumeResponseDto
| Name | Schema |
|---|---|
items |
< WeeklyTradeVolumeDataDto > array |
page |