Overview

Version information

Version : v1.2.11

URI scheme

Host : seffaflik.epias.com.tr
BasePath : /natural-gas-service
Schemes : HTTPS

Tags

  • markets-general-data-data-controller

  • markets-general-data-export-controller

  • markets-sgp-data-controller

  • markets-sgp-export-controller

  • markets-vgp-data-controller

  • markets-vgp-export-controller

  • transmission-data-controller

  • transmission-export-controller

About Document

In this document, the definitions of Transparency Platform Natural Gas services and how to call these services are explained.

1. About Transparency Natural Gas Services

The Transparency Platform application is built on REST services. It accepts JSON and XML requests and returns JSON or XML response according to the incoming request.

All of the information you see in the user interface of the application is taken from these open services. It is possible to use the system with the applications you have without using this interface.

2. Adding Security Information To Requests

After deploying the security module on Exist Transparency project, if a user wants to fetch the data displayed on a logged-in web page, that user needs to add the necessary authentication information to the request. If not entered, you will see a redirecting response like this:

REQUEST_WITHOUT_TGT_EXAMPLE

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:

CAS_TGT_REQUEST_EXAMPLE

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.

REQUEST_WITH_TGT_EXAMPLE

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)

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
Example ISO8601 Parser Java 8
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.
Example Pagination Request
 "page": {
  "number":1, //page number
  "size":20,//Row count on one page.
  "sort":{
    "direction":"ASC",//data sorting direction. ASC ya da DESC.
    "field":"date" // field name for sorting. it is pre-determined by each of the service endpoint
  },
  "total":0 // not required for request, this field is for returning total data count from server.
}

4. Service Details

From this section, you can access information about service call details according to their categories.

5. Paths

5.1. Natural Gas Market Participants Listing Service

POST /v1/markets/general-data/data/market-participant

5.1.1. Description

It shows market (SGP, VGP) registration status of the participants.

5.1.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.1.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.1.4. Consumes

  • application/json

  • application/xml

5.1.5. Produces

  • application/json

  • application/xml

5.1.6. Tags

  • markets-general-data-data-controller

5.2. Participant List Service

GET /v1/markets/general-data/data/participant-list

5.2.1. Description

Participant List Service

5.2.2. Parameters

Type Name Description Schema

Header

TGT
required

string

5.2.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.2.4. Produces

  • application/json

  • application/xml

5.2.5. Tags

  • markets-general-data-data-controller

5.3. Natural Gas Market Participants Export Service

POST /v1/markets/general-data/export/market-participant

5.3.1. Description

It shows market (SGP, VGP) registration status of the participants. Exports Natural Gas Market Participants datas as XLSX, CSV or PDF formats.

5.3.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.3.3. Responses

HTTP Code Description Schema

200

successful operation

5.3.4. Consumes

  • application/json

  • application/xml

5.3.5. Produces

  • application/json

  • application/xml

5.3.6. Tags

  • markets-general-data-export-controller

5.4. Announcement For TSO Transactions Listing Service

POST /v1/markets/sgp/data/additional-notifications

5.4.1. Description

It shows to the notifications made to market participants for transactions aiming to eliminate the imbalance in the network.

5.4.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.4.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.4.4. Consumes

  • application/json

  • application/xml

5.4.5. Produces

  • application/json

  • application/xml

5.4.6. Tags

  • markets-sgp-data-controller

5.5. Balancing Gas Price (BGP) Listing Service

POST /v1/markets/sgp/data/balancing-gas-price

5.5.1. Description

It shows the Weighted Average Price of Additional Balancing Buy or Sell transactions performed by the Transmission Company on the relevant gas day. Prices shown with (*) are unconfirmed prices. -Residual Balancer Bid Price (IDAF): weighted avarage buy price of TSO’s trades for the related day. -Residual Balancer Offer Price (IDSF): weighted avarage sell price of TSO’s trades for the related day. -Balancing Gas Bid Price (DGAF); Cashout price for negative imbalances for the related day. -Balancing Gas Offer Price (DGSF): Cashout price for the positive imbalances for the related day. *Price: TL/1000 sm3

5.5.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.5.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.5.4. Consumes

  • application/json

  • application/xml

5.5.5. Produces

  • application/json

  • application/xml

5.5.6. Tags

  • markets-sgp-data-controller

5.6. Neutralization Item Listing Service

POST /v1/markets/sgp/data/bast

5.6.1. Description

It shows amount remaining in EPİAŞ after deducting the receivables or debts of the Transmission Company and to be Distributed to the Participants in accordance with the legislation.

5.6.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.6.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.6.4. Consumes

  • application/json

  • application/xml

5.6.5. Produces

  • application/json

  • application/xml

5.6.6. Tags

  • markets-sgp-data-controller

5.7. 2 Coded Transaction Listing Service

POST /v1/markets/sgp/data/blue-code-operation

5.7.1. Description

It shows to the 2 Coded Additional Balancer Operations aimed at eliminating the imbalance in the network.

5.7.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.7.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.7.4. Consumes

  • application/json

  • application/xml

5.7.5. Produces

  • application/json

  • application/xml

5.7.6. Tags

  • markets-sgp-data-controller

5.8. SGP Daily Matched Quantity Listing Service

POST /v1/markets/sgp/data/daily-matched-quantity

5.8.1. Description

It shows Total Amount of day-ahead and intra-day matches in daily contracts in the Spot Natural Gas Market. Day Ahead Matched Quantity (GÖEM): It is the total amount of matches that took place between (D-1 08:00 – D 08:00). Intraday Matched Quantity (GİEM): It is the total amount of matches that took place between (D 08:00) (D+1 08:00). After Day Matched Quantity (GEEM): It is the total amount of matches that took place between (D+1 08:00- 14:00). TOTAL: It is the total matching amount of day ahead, intraday and next day contracts.

5.8.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.8.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.8.4. Consumes

  • application/json

  • application/xml

5.8.5. Produces

  • application/json

  • application/xml

5.8.6. Tags

  • markets-sgp-data-controller

5.9. Daily Reference Price (DRP) Listing Service

POST /v1/markets/sgp/data/daily-reference-price

5.9.1. Description

It shows Weighted Average Price of day-ahead and intraday pairings in the Spot Natural Gas Market. Prices shown with (*) are unconfirmed prices. GRF(EUR/MWh), GRF (USD/1000Sm3) and GRF (USD/MMBtu) values are calculated by taking into account the most current EURTRY & USDTRY foreign exchange buying rate announced by the CBRT as of the GRF announcement date. 1Sm3 = 10.64 kWh

5.9.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.9.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.9.4. Consumes

  • application/json

  • application/xml

5.9.5. Produces

  • application/json

  • application/xml

5.9.6. Tags

  • markets-sgp-data-controller

5.10. SGP Daily Trade Volume Listing Service

POST /v1/markets/sgp/data/daily-trade-volume

5.10.1. Description

It shows Total Amount of the matches in the daily contracts in the Spot Natural Gas Market. DÖİH: It is the total volume of matches that took place between (W-1 08:00 W 08:00). GİH: It is the total volume of matches that took place between (D 08:00 D+1 08:00). GEİH: It is the total volume of matches that took place between (D+1 08:00 14:00). TOTAL: The total volume of day ahead, intraday and next day contracts.

5.10.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.10.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.10.4. Consumes

  • application/json

  • application/xml

5.10.5. Produces

  • application/json

  • application/xml

5.10.6. Tags

  • markets-sgp-data-controller

5.11. 4 Coded Transaction Listing Service

POST /v1/markets/sgp/data/four-code-operation

5.11.1. Description

It shows to the 4 Coded Additional Balancer Operations aimed at eliminating the imbalance in the network.

5.11.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.11.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.11.4. Consumes

  • application/json

  • application/xml

5.11.5. Produces

  • application/json

  • application/xml

5.11.6. Tags

  • markets-sgp-data-controller

5.12. Retroactive Adjustment Item Amount Listing Service

POST /v1/markets/sgp/data/gddk-amount

5.12.1. Description

It shows total Credit or Payable Amount in the new invoice with the retrospective corrections made in the previous period invoices.

5.12.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.12.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.12.4. Consumes

  • application/json

  • application/xml

5.12.5. Produces

  • application/json

  • application/xml

5.12.6. Tags

  • markets-sgp-data-controller

5.13. 1 Coded Transaction Listing Service

POST /v1/markets/sgp/data/green-code-operation

5.13.1. Description

It shows to Additional Balancer Operations with Code 1 aiming to eliminate the imbalance in the network.

5.13.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.13.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.13.4. Consumes

  • application/json

  • application/xml

5.13.5. Produces

  • application/json

  • application/xml

5.13.6. Tags

  • markets-sgp-data-controller

5.14. Matched Quantity for DRP Listing Service

POST /v1/markets/sgp/data/grf-match-quantity

5.14.1. Description

It shows Total Amount of day-ahead and intra-day matches in daily contracts in the Spot Natural Gas Market. Match amounts marked with (*) are unconfirmed match amounts.

5.14.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.14.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.14.4. Consumes

  • application/json

  • application/xml

5.14.5. Produces

  • application/json

  • application/xml

5.14.6. Tags

  • markets-sgp-data-controller

5.15. GRP Trade Volume Listing Service

POST /v1/markets/sgp/data/grf-trade-volume

5.15.1. Description

It shows Total Amount of day-ahead and intra-day pairings in daily contracts in the Spot Natural Gas Market. It is the total volume of transactions occurring between D-1 08:00 and D+1 08:00.

5.15.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.15.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.15.4. Consumes

  • application/json

  • application/xml

5.15.5. Produces

  • application/json

  • application/xml

5.15.6. Tags

  • markets-sgp-data-controller

5.16. SGP Imbalance Amount Listing Service

POST /v1/markets/sgp/data/imbalance-amount

5.16.1. Description

It shows the amount that the Shippers are liable to pay for the imbalance in the network as a result of the purchase or sale weighted transactions. *Final allocation data is being published.

5.16.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.16.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.16.4. Consumes

  • application/json

  • application/xml

5.16.5. Produces

  • application/json

  • application/xml

5.16.6. Tags

  • markets-sgp-data-controller

5.17. Imbalance System Listing Service

POST /v1/markets/sgp/data/imbalance-system

5.17.1. Description

It shows increase or decrease in the Network Stock Gas Amount compared to the previous gas day. It is marked with (+) if it is greater and (-) if it is less.

5.17.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.17.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.17.4. Consumes

  • application/json

  • application/xml

5.17.5. Produces

  • application/json

  • application/xml

5.17.6. Tags

  • markets-sgp-data-controller

5.18. Sgp Last Reconciliation Date Service

GET /v1/markets/sgp/data/last-reconciliation-date

5.18.1. Description

Sgp Last Reconciliation Date Service

5.18.2. Parameters

Type Name Description Schema

Header

TGT
required

string

5.18.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.18.4. Produces

  • application/json

  • application/xml

5.18.5. Tags

  • markets-sgp-data-controller

5.19. SGP Total Matched Quantity Listing Service

POST /v1/markets/sgp/data/match-quantity

5.19.1. Description

It shows Total Amount of matches in daily and weekly contracts in the Spot Natural Gas Market.

5.19.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.19.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.19.4. Consumes

  • application/json

  • application/xml

5.19.5. Produces

  • application/json

  • application/xml

5.19.6. Tags

  • markets-sgp-data-controller

5.20. 3 Coded Transaction Listing Service

POST /v1/markets/sgp/data/orange-code-operation

5.20.1. Description

It shows to the 3 Coded Additional Balancer Operations aimed at eliminating the imbalance in the network.

5.20.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.20.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.20.4. Consumes

  • application/json

  • application/xml

5.20.5. Produces

  • application/json

  • application/xml

5.20.6. Tags

  • markets-sgp-data-controller

5.21. Physical Realization Service

POST /v1/markets/sgp/data/physical-realization

5.21.1. Description

It shows Natural Gas Quantity that the Shippers add or remove from the physical network points to the system through Buying or Selling.

5.21.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.21.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.21.4. Consumes

  • application/json

  • application/xml

5.21.5. Produces

  • application/json

  • application/xml

5.21.6. Tags

  • markets-sgp-data-controller

5.22. SGP Price Listing Service

POST /v1/markets/sgp/data/sgp-price

5.22.1. Description

It shows Weighted Average Price of matches in the relevant trading range in the Spot Natural Gas Market. Day Ahead Price; (D-1 08:00- D 08:00), -Intraday Price; (D 08:00)-(D+1 08:00), Day After Price; (D+1) (08:00-14:00), -Weighted Average Price;(D-1 08:00)-(D+1 14:00)

5.22.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.22.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.22.4. Consumes

  • application/json

  • application/xml

5.22.5. Produces

  • application/json

  • application/xml

5.22.6. Tags

  • markets-sgp-data-controller

5.23. Shipper’s Imbalance Quantity Listing Service

POST /v1/markets/sgp/data/shippers-imbalance-quantity

5.23.1. Description

It shows Natural Gas Excess or Deficiency Amount that occurs in the network as a result of the purchase or sale weighted transactions of the shippers. *It is calculated based on first allocation data.

5.23.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.23.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.23.4. Consumes

  • application/json

  • application/xml

5.23.5. Produces

  • application/json

  • application/xml

5.23.6. Tags

  • markets-sgp-data-controller

5.24. System Balance Listing Service

POST /v1/markets/sgp/data/system-direction

5.24.1. Description

It shows actual value compared to the Network Stock Gas Amount value targeted by the Transmission Company for the relevant day. It is valued as (+) if it is greater than (-) if it is less. *Final allocation data is being published.

5.24.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.24.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.24.4. Consumes

  • application/json

  • application/xml

5.24.5. Produces

  • application/json

  • application/xml

5.24.6. Tags

  • markets-sgp-data-controller

5.25. SGP Total Trade Volume Listing Service

POST /v1/markets/sgp/data/total-trade-volume

5.25.1. Description

It shows Total Amount of the matches in the daily and weekly contracts in the Spot Natural Gas Market. -Day Ahead Transaction Volume (GÖİH) : This is the total volume of matches that took place between (W-1 08:00 - D 08:00). -Intraday Transaction Volume (GIIH): It is the total volume of matches that took place between (D 08:00) and (D+1 08:00). -Day after Transaction Volume (GEİH): It is the total volume of matches that took place between (D+1 08:00 - 14:00). -TOTAL: It is the total transaction volume of day ahead, intraday and next day contracts (Total transaction volume of the relevant contract).

5.25.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.25.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.25.4. Consumes

  • application/json

  • application/xml

5.25.5. Produces

  • application/json

  • application/xml

5.25.6. Tags

  • markets-sgp-data-controller

5.26. SGP Transaction History Listing Service

POST /v1/markets/sgp/data/transaction-history

5.26.1. Description

It shows Matching Times of spot contracts.

5.26.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.26.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.26.4. Consumes

  • application/json

  • application/xml

5.26.5. Produces

  • application/json

  • application/xml

5.26.6. Tags

  • markets-sgp-data-controller

5.27. Virtual Realization Listing Service

POST /v1/markets/sgp/data/virtual-realization

5.27.1. Description

It shows Natural Gas Quantity that the Shippers add or remove from the virtual network points (UDN) through Purchase or Sale. *Final allocation data is being published.

5.27.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.27.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.27.4. Consumes

  • application/json

  • application/xml

5.27.5. Produces

  • application/json

  • application/xml

5.27.6. Tags

  • markets-sgp-data-controller

5.28. SGP Weekly Matched Quantity Listing Service

POST /v1/markets/sgp/data/weekly-matched-quantity

5.28.1. Description

It shows Total Amount of weekly contracts in the Spot Natural Gas Market. -Weekdays Transaction Quantity (HIEM): It is the total matching amount of weekday contracts. -Weekend Transaction Quantity (HSEM): It is the total matching amount for weekend contracts. -Whole Week Transaction Quantity (HTEM): Total match amount for all contracts for the week. -TOTAL: It is the total matching amount of weekday, weekend and all-week contracts.

5.28.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.28.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.28.4. Consumes

  • application/json

  • application/xml

5.28.5. Produces

  • application/json

  • application/xml

5.28.6. Tags

  • markets-sgp-data-controller

5.29. Weekly Reference Price (WRP) Listing Service

POST /v1/markets/sgp/data/weekly-ref-price

5.29.1. Description

It shows Weighted Average Price of weekly contract pairings in the Spot Natural Gas Market. HI: Weekdays HS: Weekend HT: Whole Week *Price: TL/1000 sm3

5.29.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.29.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.29.4. Consumes

  • application/json

  • application/xml

5.29.5. Produces

  • application/json

  • application/xml

5.29.6. Tags

  • markets-sgp-data-controller

5.30. SGP Weekly Trade Volume Listing Service

POST /v1/markets/sgp/data/weekly-trade-volume

5.30.1. Description

It shows Total Amount of weekly contracts in the Spot Natural Gas Market. -Weekdays Trade Volume: is the total transaction volume of weekday contracts. -Weekend Trade Volume (HSIH) : is the total transaction volume of weekend contracts. -Whole Week Trade Volume (HTIH): is the total transaction volume of all weekly contracts. -TOTAL: The total transaction volume of weekday, weekend and all-week contracts.

5.30.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.30.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.30.4. Consumes

  • application/json

  • application/xml

5.30.5. Produces

  • application/json

  • application/xml

5.30.6. Tags

  • markets-sgp-data-controller

5.31. Announcement For TSO Transactions Export Service

POST /v1/markets/sgp/export/additional-notifications

5.31.1. Description

It shows to the notifications made to market participants for transactions aiming to eliminate the imbalance in the network. Exports Announcement for TSO Transactions datas as XLSX, CSV or PDF formats.

5.31.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.31.3. Responses

HTTP Code Description Schema

200

successful operation

5.31.4. Consumes

  • application/json

  • application/xml

5.31.5. Produces

  • application/json

  • application/xml

5.31.6. Tags

  • markets-sgp-export-controller

5.32. Balancing Gas Price (BGP) Export Service

POST /v1/markets/sgp/export/balancing-gas-price

5.32.1. Description

It shows the Weighted Average Price of Additional Balancing Buy or Sell transactions performed by the Transmission Company on the relevant gas day. Prices shown with (*) are unconfirmed prices. -Residual Balancer Bid Price (IDAF): weighted avarage buy price of TSO’s trades for the related day. -Residual Balancer Offer Price (IDSF): weighted avarage sell price of TSO’s trades for the related day. -Balancing Gas Bid Price (DGAF); Cashout price for negative imbalances for the related day. -Balancing Gas Offer Price (DGSF): Cashout price for the positive imbalances for the related day. *Price: TL/1000 sm3 Exports Balancing Gas Price (BGP) datas as XLSX, CSV or PDF formats.

5.32.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.32.3. Responses

HTTP Code Description Schema

200

successful operation

5.32.4. Consumes

  • application/json

  • application/xml

5.32.5. Produces

  • application/json

  • application/xml

5.32.6. Tags

  • markets-sgp-export-controller

5.33. Neutralization Item Export Service

POST /v1/markets/sgp/export/bast

5.33.1. Description

It shows amount remaining in EPİAŞ after deducting the receivables or debts of the Transmission Company and to be Distributed to the Participants in accordance with the legislation. Exports Neutralization Item datas as XLSX, CSV or PDF formats.

5.33.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.33.3. Responses

HTTP Code Description Schema

200

successful operation

5.33.4. Consumes

  • application/json

  • application/xml

5.33.5. Produces

  • application/json

  • application/xml

5.33.6. Tags

  • markets-sgp-export-controller

5.34. 2 Coded Transaction Export Service

POST /v1/markets/sgp/export/blue-code-operation

5.34.1. Description

It shows to the 2 Coded Additional Balancer Operations aimed at eliminating the imbalance in the network. Exports 2 Coded Transaction datas as XLSX, CSV or PDF formats.

5.34.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.34.3. Responses

HTTP Code Description Schema

200

successful operation

5.34.4. Consumes

  • application/json

  • application/xml

5.34.5. Produces

  • application/json

  • application/xml

5.34.6. Tags

  • markets-sgp-export-controller

5.35. SGP Daily Matched Quantity Export Service

POST /v1/markets/sgp/export/daily-matched-quantity

5.35.1. Description

It shows Total Amount of day-ahead and intra-day matches in daily contracts in the Spot Natural Gas Market. Day Ahead Matched Quantity (GÖEM): It is the total amount of matches that took place between (D-1 08:00 – D 08:00). Intraday Matched Quantity (GİEM): It is the total amount of matches that took place between (D 08:00) (D+1 08:00). After Day Matched Quantity (GEEM): It is the total amount of matches that took place between (D+1 08:00- 14:00). TOTAL: It is the total matching amount of day ahead, intraday and next day contracts. Exports SGP Daily Matched Quantity datas as XLSX, CSV or PDF formats.

5.35.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.35.3. Responses

HTTP Code Description Schema

200

successful operation

5.35.4. Consumes

  • application/json

  • application/xml

5.35.5. Produces

  • application/json

  • application/xml

5.35.6. Tags

  • markets-sgp-export-controller

5.36. SGP Daily Matched Quantity Export Service

POST /v1/markets/sgp/export/daily-reference-price

5.36.1. Description

It shows Weighted Average Price of day-ahead and intraday pairings in the Spot Natural Gas Market. Prices shown with (*) are unconfirmed prices. GRF(EUR/MWh), GRF (USD/1000Sm3) and GRF (USD/MMBtu) values are calculated by taking into account the most current EURTRY & USDTRY foreign exchange buying rate announced by the CBRT as of the GRF announcement date. 1Sm3 = 10.64 kWh Exports SGP Daily Matched Quantity datas as XLSX, CSV or PDF formats.

5.36.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.36.3. Responses

HTTP Code Description Schema

200

successful operation

5.36.4. Consumes

  • application/json

  • application/xml

5.36.5. Produces

  • application/json

  • application/xml

5.36.6. Tags

  • markets-sgp-export-controller

5.37. SGP Daily Trade Volume Export Service

POST /v1/markets/sgp/export/daily-trade-volume

5.37.1. Description

It shows Total Amount of the matches in the daily contracts in the Spot Natural Gas Market. DÖİH: It is the total volume of matches that took place between (W-1 08:00 W 08:00). GİH: It is the total volume of matches that took place between (D 08:00 D+1 08:00). GEİH: It is the total volume of matches that took place between (D+1 08:00 14:00). TOTAL: The total volume of day ahead, intraday and next day contracts. Exports SGP Daily Trade Volume datas as XLSX, CSV or PDF formats.

5.37.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.37.3. Responses

HTTP Code Description Schema

200

successful operation

5.37.4. Consumes

  • application/json

  • application/xml

5.37.5. Produces

  • application/json

  • application/xml

5.37.6. Tags

  • markets-sgp-export-controller

5.38. 4 Coded Transaction Export Service

POST /v1/markets/sgp/export/four-code-operation

5.38.1. Description

It shows to the 4 Coded Additional Balancer Operations aimed at eliminating the imbalance in the network. Exports 4 Coded Transaction datas as XLSX, CSV or PDF formats.

5.38.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.38.3. Responses

HTTP Code Description Schema

200

successful operation

5.38.4. Consumes

  • application/json

  • application/xml

5.38.5. Produces

  • application/json

  • application/xml

5.38.6. Tags

  • markets-sgp-export-controller

5.39. Retroactive Adjustment Item Amount Export Service

POST /v1/markets/sgp/export/gddk-amount

5.39.1. Description

It shows total Credit or Payable Amount in the new invoice with the retrospective corrections made in the previous period invoices. Exports Retroactive Adjustment Item Amount datas as XLSX, CSV or PDF formats.

5.39.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.39.3. Responses

HTTP Code Description Schema

200

successful operation

5.39.4. Consumes

  • application/json

  • application/xml

5.39.5. Produces

  • application/json

  • application/xml

5.39.6. Tags

  • markets-sgp-export-controller

5.40. 1 Coded Transaction Export Service

POST /v1/markets/sgp/export/green-code-operation

5.40.1. Description

It shows to Additional Balancer Operations with Code 1 aiming to eliminate the imbalance in the network. Exports 1 Coded Transaction datas as XLSX, CSV or PDF formats.

5.40.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.40.3. Responses

HTTP Code Description Schema

200

successful operation

5.40.4. Consumes

  • application/json

  • application/xml

5.40.5. Produces

  • application/json

  • application/xml

5.40.6. Tags

  • markets-sgp-export-controller

5.41. Matched Quantity for DRP Export Service

POST /v1/markets/sgp/export/grf-match-quantity

5.41.1. Description

It shows Total Amount of day-ahead and intra-day matches in daily contracts in the Spot Natural Gas Market. Match amounts marked with (*) are unconfirmed match amounts. Exports Matched Quantity for DRP datas as XLSX, CSV or PDF formats.

5.41.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.41.3. Responses

HTTP Code Description Schema

200

successful operation

5.41.4. Consumes

  • application/json

  • application/xml

5.41.5. Produces

  • application/json

  • application/xml

5.41.6. Tags

  • markets-sgp-export-controller

5.42. GRP Trade Volume Export Service

POST /v1/markets/sgp/export/grf-trade-volume

5.42.1. Description

It shows Total Amount of day-ahead and intra-day pairings in daily contracts in the Spot Natural Gas Market. It is the total volume of transactions occurring between D-1 08:00 and D+1 08:00. Exports GRP Trade Volume datas as XLSX, CSV or PDF formats.

5.42.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.42.3. Responses

HTTP Code Description Schema

200

successful operation

5.42.4. Consumes

  • application/json

  • application/xml

5.42.5. Produces

  • application/json

  • application/xml

5.42.6. Tags

  • markets-sgp-export-controller

5.43. SGP Imbalance Amount Export Service

POST /v1/markets/sgp/export/imbalance-amount

5.43.1. Description

It shows the amount that the Shippers are liable to pay for the imbalance in the network as a result of the purchase or sale weighted transactions. *Final allocation data is being published. Exports SGP Imbalance Amount datas as XLSX, CSV or PDF formats.

5.43.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.43.3. Responses

HTTP Code Description Schema

200

successful operation

5.43.4. Consumes

  • application/json

  • application/xml

5.43.5. Produces

  • application/json

  • application/xml

5.43.6. Tags

  • markets-sgp-export-controller

5.44. Imbalance System Export Service

POST /v1/markets/sgp/export/imbalance-system

5.44.1. Description

It shows increase or decrease in the Network Stock Gas Amount compared to the previous gas day. It is marked with (+) if it is greater and (-) if it is less. Exports Imbalance System datas as XLSX, CSV or PDF formats.

5.44.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.44.3. Responses

HTTP Code Description Schema

200

successful operation

5.44.4. Consumes

  • application/json

  • application/xml

5.44.5. Produces

  • application/json

  • application/xml

5.44.6. Tags

  • markets-sgp-export-controller

5.45. Weekly Reference Price (WRP) Export Service

POST /v1/markets/sgp/export/match-quantity

5.45.1. Description

It shows Total Amount of matches in daily and weekly contracts in the Spot Natural Gas Market. Exports SGP Total Matched Quantity datas as XLSX, CSV or PDF formats.

5.45.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.45.3. Responses

HTTP Code Description Schema

200

successful operation

5.45.4. Consumes

  • application/json

  • application/xml

5.45.5. Produces

  • application/json

  • application/xml

5.45.6. Tags

  • markets-sgp-export-controller

5.46. 3 Coded Transaction Export Service

POST /v1/markets/sgp/export/orange-code-operation

5.46.1. Description

It shows to the 3 Coded Additional Balancer Operations aimed at eliminating the imbalance in the network. Exports 3 Coded Transaction datas as XLSX, CSV or PDF formats.

5.46.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.46.3. Responses

HTTP Code Description Schema

200

successful operation

5.46.4. Consumes

  • application/json

  • application/xml

5.46.5. Produces

  • application/json

  • application/xml

5.46.6. Tags

  • markets-sgp-export-controller

5.47. Physical Realization Export Service

POST /v1/markets/sgp/export/physical-realization

5.47.1. Description

It shows Natural Gas Quantity that the Shippers add or remove from the physical network points to the system through Buying or Selling. Exports Physical Realization datas as XLSX, CSV or PDF formats.

5.47.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.47.3. Responses

HTTP Code Description Schema

200

successful operation

5.47.4. Consumes

  • application/json

  • application/xml

5.47.5. Produces

  • application/json

  • application/xml

5.47.6. Tags

  • markets-sgp-export-controller

5.48. SGP Price Export Service

POST /v1/markets/sgp/export/sgp-price

5.48.1. Description

It shows Weighted Average Price of matches in the relevant trading range in the Spot Natural Gas Market. Day Ahead Price; (D-1 08:00- D 08:00), -Intraday Price; (D 08:00)-(D+1 08:00), Day After Price; (D+1) (08:00-14:00), -Weighted Average Price;(D-1 08:00)-(D+1 14:00) Exports SGP Price datas as XLSX, CSV or PDF formats.

5.48.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.48.3. Responses

HTTP Code Description Schema

200

successful operation

5.48.4. Consumes

  • application/json

  • application/xml

5.48.5. Produces

  • application/json

  • application/xml

5.48.6. Tags

  • markets-sgp-export-controller

5.49. Shipper’s Imbalance Quantity Export Service

POST /v1/markets/sgp/export/shippers-imbalance-quantity

5.49.1. Description

It shows Natural Gas Excess or Deficiency Amount that occurs in the network as a result of the purchase or sale weighted transactions of the shippers. *It is calculated based on first allocation data. Exports Shipper’s Imbalance Quantity datas as XLSX, CSV or PDF formats.

5.49.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.49.3. Responses

HTTP Code Description Schema

200

successful operation

5.49.4. Consumes

  • application/json

  • application/xml

5.49.5. Produces

  • application/json

  • application/xml

5.49.6. Tags

  • markets-sgp-export-controller

5.50. System Balance Export Service

POST /v1/markets/sgp/export/system-direction

5.50.1. Description

It shows actual value compared to the Network Stock Gas Amount value targeted by the Transmission Company for the relevant day. It is valued as (+) if it is greater than (-) if it is less. *Final allocation data is being published. Exports System Balance datas as XLSX, CSV or PDF formats.

5.50.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.50.3. Responses

HTTP Code Description Schema

200

successful operation

5.50.4. Consumes

  • application/json

  • application/xml

5.50.5. Produces

  • application/json

  • application/xml

5.50.6. Tags

  • markets-sgp-export-controller

5.51. SGP Total Trade Volume Export Service

POST /v1/markets/sgp/export/total-trade-volume

5.51.1. Description

It shows Total Amount of the matches in the daily and weekly contracts in the Spot Natural Gas Market. -Day Ahead Transaction Volume (GÖİH) : This is the total volume of matches that took place between (W-1 08:00 - D 08:00). -Intraday Transaction Volume (GIIH): It is the total volume of matches that took place between (D 08:00) and (D+1 08:00). -Day after Transaction Volume (GEİH): It is the total volume of matches that took place between (D+1 08:00 - 14:00). -TOTAL: It is the total transaction volume of day ahead, intraday and next day contracts (Total transaction volume of the relevant contract). Exports SGP Total Trade Volume datas as XLSX, CSV or PDF formats.

5.51.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.51.3. Responses

HTTP Code Description Schema

200

successful operation

5.51.4. Consumes

  • application/json

  • application/xml

5.51.5. Produces

  • application/json

  • application/xml

5.51.6. Tags

  • markets-sgp-export-controller

5.52. SGP Transaction History Export Service

POST /v1/markets/sgp/export/transaction-history

5.52.1. Description

It shows Matching Times of spot contracts. Exports SGP Transaction History datas as XLSX, CSV or PDF formats.

5.52.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.52.3. Responses

HTTP Code Description Schema

200

successful operation

5.52.4. Consumes

  • application/json

  • application/xml

5.52.5. Produces

  • application/json

  • application/xml

5.52.6. Tags

  • markets-sgp-export-controller

5.53. Virtual Realization Export Service

POST /v1/markets/sgp/export/virtual-realization

5.53.1. Description

It shows Natural Gas Quantity that the Shippers add or remove from the virtual network points (UDN) through Purchase or Sale. *Final allocation data is being published. Exports Virtual Realization datas as XLSX, CSV or PDF formats.

5.53.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.53.3. Responses

HTTP Code Description Schema

200

successful operation

5.53.4. Consumes

  • application/json

  • application/xml

5.53.5. Produces

  • application/json

  • application/xml

5.53.6. Tags

  • markets-sgp-export-controller

5.54. SGP Weekly Matched Quantity Export Service

POST /v1/markets/sgp/export/weekly-matched-quantity

5.54.1. Description

It shows Total Amount of weekly contracts in the Spot Natural Gas Market. -Weekdays Transaction Quantity (HIEM): It is the total matching amount of weekday contracts. -Weekend Transaction Quantity (HSEM): It is the total matching amount for weekend contracts. -Whole Week Transaction Quantity (HTEM): Total match amount for all contracts for the week. -TOTAL: It is the total matching amount of weekday, weekend and all-week contracts. Exports SGP Weekly Matched Quantity datas as XLSX, CSV or PDF formats.

5.54.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.54.3. Responses

HTTP Code Description Schema

200

successful operation

5.54.4. Consumes

  • application/json

  • application/xml

5.54.5. Produces

  • application/json

  • application/xml

5.54.6. Tags

  • markets-sgp-export-controller

5.55. Weekly Reference Price (WRP) Export Service

POST /v1/markets/sgp/export/weekly-ref-price

5.55.1. Description

It shows Weighted Average Price of weekly contract pairings in the Spot Natural Gas Market. HI: Weekdays HS: Weekend HT: Whole Week *Price: TL/1000 sm3 Exports Weekly Reference Price (WRP) datas as XLSX, CSV or PDF formats.

5.55.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.55.3. Responses

HTTP Code Description Schema

200

successful operation

5.55.4. Consumes

  • application/json

  • application/xml

5.55.5. Produces

  • application/json

  • application/xml

5.55.6. Tags

  • markets-sgp-export-controller

5.56. SGP Weekly Trade Volume Export Service

POST /v1/markets/sgp/export/weekly-trade-volume

5.56.1. Description

It shows Total Amount of weekly contracts in the Spot Natural Gas Market. -Weekdays Trade Volume: is the total transaction volume of weekday contracts. -Weekend Trade Volume (HSIH) : is the total transaction volume of weekend contracts. -Whole Week Trade Volume (HTIH): is the total transaction volume of all weekly contracts. -TOTAL: The total transaction volume of weekday, weekend and all-week contracts. Exports SGP Weekly Trade Volume datas as XLSX, CSV or PDF formats.

5.56.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.56.3. Responses

HTTP Code Description Schema

200

successful operation

5.56.4. Consumes

  • application/json

  • application/xml

5.56.5. Produces

  • application/json

  • application/xml

5.56.6. Tags

  • markets-sgp-export-controller

5.57. GFM Contract Price Summary Data Listing Service

POST /v1/markets/vgp/data/contract-price-summary

5.57.1. Description

It shows Match Price Statistics of futures contracts.First Match Price (TL/1000.Sm3): Indicates the first transaction price realized in each futures contract on the relevant day.Highest Matching Price (TL/1000.Sm3): Indicates the highest matching price realized in each futures contract on the relevant day.Lowest Matching Price (TL/1000.Sm3): Shows the lowest match price realized for each futures contract on the relevant day.Last Match Price (TL/1000.Sm3): Shows the last trade price realized for each futures contract on the relevant day.

5.57.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.57.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.57.4. Consumes

  • application/json

  • application/xml

5.57.5. Produces

  • application/json

  • application/xml

5.57.6. Tags

  • markets-vgp-data-controller

5.58. Delivery Period

GET /v1/markets/vgp/data/delivery-period

5.58.1. Description

Delivery Period

5.58.2. Parameters

Type Name Description Schema

Header

TGT
required

string

5.58.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.58.4. Produces

  • application/json

  • application/xml

5.58.5. Tags

  • markets-vgp-data-controller

5.59. Delivery Year

GET /v1/markets/vgp/data/delivery-year

5.59.1. Description

Delivery Year

5.59.2. Parameters

Type Name Description Schema

Header

TGT
required

string

5.59.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.59.4. Produces

  • application/json

  • application/xml

5.59.5. Tags

  • markets-vgp-data-controller

5.60. GFM Daily Index Price Data Listing Service

POST /v1/markets/vgp/data/ggf

5.60.1. Description

It shows Weighted Average Price of day-ahead and intraday pairings in the Futures Natural Gas Market (VGP).

5.60.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.60.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.60.4. Consumes

  • application/json

  • application/xml

5.60.5. Produces

  • application/json

  • application/xml

5.60.6. Tags

  • markets-vgp-data-controller

5.61. GFM Matching Amount (1000.Sm³/day) Data Listing Service

POST /v1/markets/vgp/data/matching-quantity

5.61.1. Description

It shows Weighted Average Prices of Bids and/or Matches of Futures Contracts.

5.61.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.61.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.61.4. Consumes

  • application/json

  • application/xml

5.61.5. Produces

  • application/json

  • application/xml

5.61.6. Tags

  • markets-vgp-data-controller

5.62. GFM Open Position (1000.Sm³/day) Data Listing Service

POST /v1/markets/vgp/data/open-position

5.62.1. Description

It shows the Spread Amount of the Futures Contracts for Bid and Sell Matches.

5.62.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.62.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.62.4. Consumes

  • application/json

  • application/xml

5.62.5. Produces

  • application/json

  • application/xml

5.62.6. Tags

  • markets-vgp-data-controller

5.63. GFM Order Prices Data Listing Service

POST /v1/markets/vgp/data/vgp-offer-price

5.63.1. Description

It shows Bid Price Statistics of futures contracts.

5.63.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.63.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.63.4. Consumes

  • application/json

  • application/xml

5.63.5. Produces

  • application/json

  • application/xml

5.63.6. Tags

  • markets-vgp-data-controller

5.64. GFM Transaction History Data Listing Service

POST /v1/markets/vgp/data/vgp-transaction-history

5.64.1. Description

It shows Matching Times of futures contracts.Matching Price (TL/1000.Sm3): Shows the matching price of the transaction realized in each futures contract on the relevant day.Matching Amount (1000.Sm3): Shows the matching amount of the transaction realized in each futures contract on the relevant day.

5.64.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.64.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.64.4. Consumes

  • application/json

  • application/xml

5.64.5. Produces

  • application/json

  • application/xml

5.64.6. Tags

  • markets-vgp-data-controller

5.65. GFM Trade Volume Data Listing Service

POST /v1/markets/vgp/data/vgp-volume

5.65.1. Description

It shows Matched Amount of futures contracts.

5.65.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.65.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.65.4. Consumes

  • application/json

  • application/xml

5.65.5. Produces

  • application/json

  • application/xml

5.65.6. Tags

  • markets-vgp-data-controller

5.66. GFM Contract Price Summary Export Service

POST /v1/markets/vgp/export/contract-price-summary

5.66.1. Description

It shows Match Price Statistics of futures contracts.First Match Price (TL/1000.Sm3): Indicates the first transaction price realized in each futures contract on the relevant day.Highest Matching Price (TL/1000.Sm3): Indicates the highest matching price realized in each futures contract on the relevant day.Lowest Matching Price (TL/1000.Sm3): Shows the lowest match price realized for each futures contract on the relevant day.Last Match Price (TL/1000.Sm3): Shows the last trade price realized for each futures contract on the relevant day.Exports GFM Contract Price Summary datas as XLSX, CSV or PDF formats.

5.66.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.66.3. Responses

HTTP Code Description Schema

200

successful operation

5.66.4. Consumes

  • application/json

  • application/xml

5.66.5. Produces

  • application/json

  • application/xml

5.66.6. Tags

  • markets-vgp-export-controller

5.67. GFM Daily Index Price Data Export Service

POST /v1/markets/vgp/export/ggf

5.67.1. Description

It shows Weighted Average Price of day-ahead and intraday pairings in the Futures Natural Gas Market (VGP).Exports GFM Daily Index Price datas as XLSX, CSV or PDF formats.

5.67.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.67.3. Responses

HTTP Code Description Schema

200

successful operation

5.67.4. Consumes

  • application/json

  • application/xml

5.67.5. Produces

  • application/json

  • application/xml

5.67.6. Tags

  • markets-vgp-export-controller

5.68. GFM Matching Amount (1000.Sm³/day) Export Service

POST /v1/markets/vgp/export/matching-quantity

5.68.1. Description

It shows Weighted Average Prices of Bids and/or Matches of Futures Contracts.Exports GFM Matching Amount (1000.Sm³/day) datas as XLSX, CSV or PDF formats.

5.68.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.68.3. Responses

HTTP Code Description Schema

200

successful operation

5.68.4. Consumes

  • application/json

  • application/xml

5.68.5. Produces

  • application/json

  • application/xml

5.68.6. Tags

  • markets-vgp-export-controller

5.69. GFM Open Position (1000.Sm³/day) Export Service

POST /v1/markets/vgp/export/open-position

5.69.1. Description

It shows the Spread Amount of the Futures Contracts for Bid and Sell Matches.Exports GFM Open Position (1000.Sm³/day) datas as XLSX, CSV or PDF formats.

5.69.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.69.3. Responses

HTTP Code Description Schema

200

successful operation

5.69.4. Consumes

  • application/json

  • application/xml

5.69.5. Produces

  • application/json

  • application/xml

5.69.6. Tags

  • markets-vgp-export-controller

5.70. GFM Order Prices Export Service

POST /v1/markets/vgp/export/vgp-offer-price

5.70.1. Description

It shows Bid Price Statistics of futures contracts.Exports GFM Order Prices datas as XLSX, CSV or PDF formats.

5.70.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.70.3. Responses

HTTP Code Description Schema

200

successful operation

5.70.4. Consumes

  • application/json

  • application/xml

5.70.5. Produces

  • application/json

  • application/xml

5.70.6. Tags

  • markets-vgp-export-controller

5.71. GFM Transaction History Export Service

POST /v1/markets/vgp/export/vgp-transaction-history

5.71.1. Description

It shows Matching Times of futures contracts.Matching Price (TL/1000.Sm3): Shows the matching price of the transaction realized in each futures contract on the relevant day. Matching Amount (1000.Sm3): Shows the matching amount of the transaction realized in each futures contract on the relevant day.Exports GFM Transaction History datas as XLSX, CSV or PDF formats.

5.71.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.71.3. Responses

HTTP Code Description Schema

200

successful operation

5.71.4. Consumes

  • application/json

  • application/xml

5.71.5. Produces

  • application/json

  • application/xml

5.71.6. Tags

  • markets-vgp-export-controller

5.72. GFM Trade Volume Export Service

POST /v1/markets/vgp/export/vgp-volume

5.72.1. Description

It shows Matched Amount of futures contracts.Exports GFM Trade Volume datas as XLSX, CSV or PDF formats.

5.72.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.72.3. Responses

HTTP Code Description Schema

200

successful operation

5.72.4. Consumes

  • application/json

  • application/xml

5.72.5. Produces

  • application/json

  • application/xml

5.72.6. Tags

  • markets-vgp-export-controller

5.73. Capacity Point Service

POST /v1/transmission/data/capacity-point

5.73.1. Description

Capacity Point Service

5.73.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.73.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.73.4. Consumes

  • application/json

  • application/xml

5.73.5. Produces

  • application/json

  • application/xml

5.73.6. Tags

  • transmission-data-controller

5.74. Daily Actualization Amount Listing Service

POST /v1/transmission/data/daily-actualization-amount

5.74.1. Description

It shows amount of natural gas transferred from the network to the natural gas storage facilities.

5.74.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.74.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.74.4. Consumes

  • application/json

  • application/xml

5.74.5. Produces

  • application/json

  • application/xml

5.74.6. Tags

  • transmission-data-controller

5.75. Day Ahead (UDN) Listing Service

POST /v1/transmission/data/day-ahead

5.75.1. Description

It shows Bilateral agreement refers to the statement of quantity.

5.75.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.75.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.75.4. Consumes

  • application/json

  • application/xml

5.75.5. Produces

  • application/json

  • application/xml

5.75.6. Tags

  • transmission-data-controller

5.76. Day End (UDN) Listing Service

POST /v1/transmission/data/day-end

5.76.1. Description

Day End (UDN).

5.76.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.76.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.76.4. Consumes

  • application/json

  • application/xml

5.76.5. Produces

  • application/json

  • application/xml

5.76.6. Tags

  • transmission-data-controller

5.77. Entry Nomination Listing Service

POST /v1/transmission/data/entry-nomination

5.77.1. Description

It shows physical point based entry quantity notification.

5.77.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.77.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.77.4. Consumes

  • application/json

  • application/xml

5.77.5. Produces

  • application/json

  • application/xml

5.77.6. Tags

  • transmission-data-controller

5.78. Exit Nomination Listing Service

POST /v1/transmission/data/exit-nomination

5.78.1. Description

It shows Physical Point-based output quantity notification.

5.78.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.78.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.78.4. Consumes

  • application/json

  • application/xml

5.78.5. Produces

  • application/json

  • application/xml

5.78.6. Tags

  • transmission-data-controller

5.79. Max Entry Amount Listing Service

POST /v1/transmission/data/max-entry-amount

5.79.1. Description

It shows amount of natural gas expected to be added to the transmission network according to the Transmission Company capacity plan.

5.79.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.79.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.79.4. Consumes

  • application/json

  • application/xml

5.79.5. Produces

  • application/json

  • application/xml

5.79.6. Tags

  • transmission-data-controller

5.80. Max Exit Amount Listing Service

POST /v1/transmission/data/max-exit-amount

5.80.1. Description

It shows amount of natural gas expected to come out of the transmission network according to the Transmission Company capacity plan.

5.80.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.80.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.80.4. Consumes

  • application/json

  • application/xml

5.80.5. Produces

  • application/json

  • application/xml

5.80.6. Tags

  • transmission-data-controller

5.81. Entry Amount Listing Service

POST /v1/transmission/data/realization-entry-amount

5.81.1. Description

It shows result of the Purchase transaction of the Shippers shows the actual amount of natural gas added to the system.

5.81.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.81.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.81.4. Consumes

  • application/json

  • application/xml

5.81.5. Produces

  • application/json

  • application/xml

5.81.6. Tags

  • transmission-data-controller

5.82. Exit Amount Listing Service

POST /v1/transmission/data/realization-exit-amount

5.82.1. Description

It shows result of the Shipper’s Sales transaction shows the actual amount of natural gas released from the system.

5.82.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.82.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.82.4. Consumes

  • application/json

  • application/xml

5.82.5. Produces

  • application/json

  • application/xml

5.82.6. Tags

  • transmission-data-controller

5.83. Entry Amount Listing Service

POST /v1/transmission/data/rezerve-entry-amount

5.83.1. Description

It shows amount of natural gas expected to be added to the transmission network according to the Transmission Company reservation program.

5.83.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.83.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.83.4. Consumes

  • application/json

  • application/xml

5.83.5. Produces

  • application/json

  • application/xml

5.83.6. Tags

  • transmission-data-controller

5.84. Exit Amount Listing Service

POST /v1/transmission/data/rezerve-exit-amount

5.84.1. Description

It shows amount of natural gas expected to come out of the transmission network according to the Transmission Company reservation program.

5.84.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.84.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.84.4. Consumes

  • application/json

  • application/xml

5.84.5. Produces

  • application/json

  • application/xml

5.84.6. Tags

  • transmission-data-controller

5.85. Stock Amount Listing Service

POST /v1/transmission/data/stock-amount

5.85.1. Description

It shows daily amount of natural gas trapped in the Transmission Network.

5.85.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.85.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.85.4. Consumes

  • application/json

  • application/xml

5.85.5. Produces

  • application/json

  • application/xml

5.85.6. Tags

  • transmission-data-controller

5.86. Storage Facility Service

GET /v1/transmission/data/storage-facility

5.86.1. Description

Storage Facility Service

5.86.2. Parameters

Type Name Description Schema

Header

TGT
required

string

5.86.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.86.4. Produces

  • application/json

  • application/xml

5.86.5. Tags

  • transmission-data-controller

5.87. Transfer Listing Service

POST /v1/transmission/data/transfer

5.87.1. Description

It shows Physical Point-based Bilateral agreement refers to the amount notification.

5.87.2. Parameters

Type Name Description Schema

Header

TGT
required

string

Body

body
required

Request Body.

5.87.3. Responses

HTTP Code Description Schema

200

Operation successful

400

Bad request. Please check your request

No Content

500

Unexpected error. Please contact EXIST

No Content

5.87.4. Consumes

  • application/json

  • application/xml

5.87.5. Produces

  • application/json

  • application/xml

5.87.6. Tags

  • transmission-data-controller

5.88. Daily Actualization Amount Export Service

POST /v1/transmission/export/daily-actualization-amount

5.88.1. Description

It shows amount of natural gas transferred from the network to the natural gas storage facilities. Exports Daily Actualization Amount datas as XLSX, CSV or PDF formats.

5.88.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.88.3. Responses

HTTP Code Description Schema

200

successful operation

5.88.4. Consumes

  • application/json

  • application/xml

5.88.5. Produces

  • application/json

  • application/xml

5.88.6. Tags

  • transmission-export-controller

5.89. Day Ahead (UDN) Export Service

POST /v1/transmission/export/day-ahead

5.89.1. Description

It shows Bilateral agreement refers to the statement of quantity. Exports Day Ahead (UDN) datas as XLSX, CSV or PDF formats.

5.89.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.89.3. Responses

HTTP Code Description Schema

200

successful operation

5.89.4. Consumes

  • application/json

  • application/xml

5.89.5. Produces

  • application/json

  • application/xml

5.89.6. Tags

  • transmission-export-controller

5.90. Day End (UDN) Export Service

POST /v1/transmission/export/day-end

5.90.1. Description

Day End (UDN). Exports Day End (UDN) datas as XLSX, CSV or PDF formats.

5.90.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.90.3. Responses

HTTP Code Description Schema

200

successful operation

5.90.4. Consumes

  • application/json

  • application/xml

5.90.5. Produces

  • application/json

  • application/xml

5.90.6. Tags

  • transmission-export-controller

5.91. Entry Nomination Export Service

POST /v1/transmission/export/entry-nomination

5.91.1. Description

It shows physical point based entry quantity notification. Exports Entry Nomination datas as XLSX, CSV or PDF formats.

5.91.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.91.3. Responses

HTTP Code Description Schema

200

successful operation

5.91.4. Consumes

  • application/json

  • application/xml

5.91.5. Produces

  • application/json

  • application/xml

5.91.6. Tags

  • transmission-export-controller

5.92. Exit Nomination Export Service

POST /v1/transmission/export/exit-nomination

5.92.1. Description

It shows Physical Point-based output quantity notification. Exports Exit Nomination datas as XLSX, CSV or PDF formats.

5.92.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.92.3. Responses

HTTP Code Description Schema

200

successful operation

5.92.4. Consumes

  • application/json

  • application/xml

5.92.5. Produces

  • application/json

  • application/xml

5.92.6. Tags

  • transmission-export-controller

5.93. Max Entry Amount Export Service

POST /v1/transmission/export/max-entry-amount

5.93.1. Description

It shows amount of natural gas expected to be added to the transmission network according to the Transmission Company capacity plan. Exports Max Entry Amount datas as XLSX, CSV or PDF formats.

5.93.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.93.3. Responses

HTTP Code Description Schema

200

successful operation

5.93.4. Consumes

  • application/json

  • application/xml

5.93.5. Produces

  • application/json

  • application/xml

5.93.6. Tags

  • transmission-export-controller

5.94. Max Exit Amount Export Service

POST /v1/transmission/export/max-exit-amount

5.94.1. Description

It shows amount of natural gas expected to come out of the transmission network according to the Transmission Company capacity plan. Exports Max Exit Amount datas as XLSX, CSV or PDF formats.

5.94.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.94.3. Responses

HTTP Code Description Schema

200

successful operation

5.94.4. Consumes

  • application/json

  • application/xml

5.94.5. Produces

  • application/json

  • application/xml

5.94.6. Tags

  • transmission-export-controller

5.95. Entry Amount Export Service

POST /v1/transmission/export/realization-entry-amount

5.95.1. Description

It shows result of the Purchase transaction of the Shippers shows the actual amount of natural gas added to the system. Exports Entry Amount datas as XLSX, CSV or PDF formats.

5.95.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.95.3. Responses

HTTP Code Description Schema

200

successful operation

5.95.4. Consumes

  • application/json

  • application/xml

5.95.5. Produces

  • application/json

  • application/xml

5.95.6. Tags

  • transmission-export-controller

5.96. Exit Amount Export Service

POST /v1/transmission/export/realization-exit-amount

5.96.1. Description

It shows result of the Shipper’s Sales transaction shows the actual amount of natural gas released from the system. Exports Exit Amount datas as XLSX, CSV or PDF formats.

5.96.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.96.3. Responses

HTTP Code Description Schema

200

successful operation

5.96.4. Consumes

  • application/json

  • application/xml

5.96.5. Produces

  • application/json

  • application/xml

5.96.6. Tags

  • transmission-export-controller

5.97. Entry Amount Export Service

POST /v1/transmission/export/rezerve-entry-amount

5.97.1. Description

It shows amount of natural gas expected to be added to the transmission network according to the Transmission Company reservation program. Exports Entry Amount datas as XLSX, CSV or PDF formats.

5.97.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.97.3. Responses

HTTP Code Description Schema

200

successful operation

5.97.4. Consumes

  • application/json

  • application/xml

5.97.5. Produces

  • application/json

  • application/xml

5.97.6. Tags

  • transmission-export-controller

5.98. Exit Amount Export Service

POST /v1/transmission/export/rezerve-exit-amount

5.98.1. Description

It shows amount of natural gas expected to come out of the transmission network according to the Transmission Company reservation program. Exports Exit Amount datas as XLSX, CSV or PDF formats.

5.98.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.98.3. Responses

HTTP Code Description Schema

200

successful operation

5.98.4. Consumes

  • application/json

  • application/xml

5.98.5. Produces

  • application/json

  • application/xml

5.98.6. Tags

  • transmission-export-controller

5.99. Stock Amount Export Service

POST /v1/transmission/export/stock-amount

5.99.1. Description

It shows daily amount of natural gas trapped in the Transmission Network. Exports Stock Amount datas as XLSX, CSV or PDF formats.

5.99.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.99.3. Responses

HTTP Code Description Schema

200

successful operation

5.99.4. Consumes

  • application/json

  • application/xml

5.99.5. Produces

  • application/json

  • application/xml

5.99.6. Tags

  • transmission-export-controller

5.100. Transfer Export Service

POST /v1/transmission/export/transfer

5.100.1. Description

It shows Physical Point-based Bilateral agreement refers to the amount notification. Exports Transfer datas as XLSX, CSV or PDF formats.

5.100.2. Parameters

Type Name Description Schema

Body

body
required

Request Body.

5.100.3. Responses

HTTP Code Description Schema

200

successful operation

5.100.4. Consumes

  • application/json

  • application/xml

5.100.5. Produces

  • application/json

  • application/xml

5.100.6. Tags

  • transmission-export-controller

6. Definitions

6.1. AdditionalNotificationsDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

message
optional

Description

string

subject
optional

Subject

string

6.2. AdditionalNotificationsExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.3. AdditionalNotificationsRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.4. AdditionalNotificationsResponseDto

Name Schema

items
optional

page
optional

6.5. BalancingGasPriceDataDto

Name Description Schema

additionalBalancingPurchase
optional

TSO Purchase Price

number

additionalBalancingSale
optional

TSO Sale Price

number

balancingGasPurchase
optional

Balancing Gas Purchase Price

number

balancingGasSale
optional

Balancing Gas Sale Price

number

gasDay
optional

Gas Day

string (date-time)

6.6. BalancingGasPriceExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.7. BalancingGasPriceRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.8. BalancingGasPriceResponseDto

Name Schema

items
optional

page
optional

6.9. BastDataDto

Name Description Schema

bast
optional

Neutralization Item(TL)

number

gasDay
optional

Gas Day

string (date-time)

6.10. BastExportRequestDto

Name Description Schema

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

period
required

Period
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.11. BastRequestDto

Name Description Schema

page
optional

Sayfalama bilgisi.

period
required

Period
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.12. BastResponseDto

Name Schema

isAllowanceFinal
optional

boolean

items
optional

< BastDataDto > array

page
optional

statistics
optional

6.13. BastStatisticsDto

Name Schema

totalAmount
optional

number

6.14. CapacityPointRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

pointType
required

INPUT
Example : "INPUT"

enum (INPUT, OUTPUT)

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.15. CapacityPointResponseDataDto

Name Description Schema

pointId
optional

Point Id Of Point Name Information.

integer (int64)

pointName
optional

1234

string

6.16. CapacityPointResponseDto

Name Schema

items
optional

page
optional

6.17. ContractPriceSummaryExportRequestDto

Name Description Schema

deliveryPeriod
optional

Information Of Delivery Period
Example : "Q1"

string

deliveryYear
optional

Information Of Year
Example : "2001"

string

endDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

isTransactionPeriod
required

Boolean Value Of Transaction Period
Example : true

boolean

page
optional

Sayfalama bilgisi.

startDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.18. ContractPriceSummaryRequestDto

Name Description Schema

deliveryPeriod
optional

Information Of Delivery Period
Example : "Q1"

string

deliveryYear
optional

Information Of Year
Example : "2001"

string

endDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

isTransactionPeriod
required

Boolean Value Of Transaction Period
Example : true

boolean

page
optional

Sayfalama bilgisi.

startDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.19. ContractPriceSummaryResponseDataDto

Name Description Schema

contractName
optional

Contract

string

firstMatchingPrice
optional

Total Trade Volume

number

ggf
optional

Total Trade Volume

number

latestMatchingPrice
optional

Total Trade Volume

number

maxMatchingPrice
optional

Total Trade Volume

number

minMatchingPrice
optional

Total Trade Volume

number

transactionDate
optional

Gas Day

string (date-time)

6.20. ContractPriceSummaryResponseDto

Name Schema

items
optional

page
optional

6.21. DailyActualizationAmountExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

storageFacilityId
optional

Id Of Storage Facility
Example : 1234

integer (int64)

6.22. DailyActualizationAmountRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

storageFacilityId
optional

Id Of Storage Facility
Example : 1234

integer (int64)

6.23. DailyActualizationAmountResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

injection
optional

Max Entry Amount Transfer

integer (int64)

reproduction
optional

Max Entry Amount Transfer

integer (int64)

6.24. DailyActualizationAmountResponseDto

Name Schema

items
optional

page
optional

6.25. DailyMatchedQuantityExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.26. DailyMatchedQuantityRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.27. DailyMatchedQuantityResponseDataDto

Name Description Schema

contractName
optional

Contract

string

dayAfterMatchingQuantity
optional

Day Ahead Matched Quantity (DAMQ)

number

dayAheadMatchingQuantity
optional

After Day Matched Quantity (ADMQ)

number

intraDayMatchingQuantity
optional

Intraday Matched Quantity (IDAMQ)

number

total
optional

Total

number

6.28. DailyMatchedQuantityResponseDto

Name Schema

items
optional

page
optional

6.29. DailyReferencePriceExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.30. DailyReferencePriceRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.31. DailyReferencePriceResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

grfEur
optional

DRP (EUR/1000Sm3)

number

grfTl
optional

DRP (TL/1000Sm3)

number

grfUsd
optional

DRP (USD/1000Sm3)

number

grfUsdMmBtu
optional

DRP (USD/MMBtu)

number

6.32. DailyReferencePriceResponseDto

Name Schema

items
optional

page
optional

statistics
optional

6.33. DailyReferencePriceStatisticsDto

Name Schema

avgPriceEur
optional

number

avgPriceTl
optional

number

avgPriceUsd
optional

number

avgPriceUsdMmBtu
optional

number

6.34. DailyTradeVolumeExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.35. DailyTradeVolumeRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.36. DailyTradeVolumeResponseDataDto

Name Description Schema

contractName
optional

Contract

string

dayAfterTradeValue
optional

GEIH

number

dayAheadTradeValue
optional

GOIH

number

intraDayTradeValue
optional

GIIH

number

tradeValueTotal
optional

Total

number

6.37. DailyTradeVolumeResponseDto

Name Schema

items
optional

page
optional

6.38. DayAheadResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

dayAheadAmount
optional

Day Ahead Amount

number

6.39. DayAheadResponseDto

Name Schema

items
optional

page
optional

totals
optional

6.40. DayEndResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

dayEndAmount
optional

Day End Amount

number

6.41. DayEndResponseDto

Name Schema

items
optional

page
optional

totals
optional

6.42. DeliveryPeriodResponseDataDto

Name Description Schema

deliveryPeriod
optional

NAME

string

6.43. DeliveryPeriodResponseDto

Name Schema

items
optional

page
optional

6.44. DeliveryYearResponseDataDto

Name Description Schema

deliveryYear
optional

NAME

string

6.45. DeliveryYearResponseDto

Name Schema

items
optional

page
optional

6.46. EntryNominationExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.47. EntryNominationRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.48. EntryNominationResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

entryNominationAmount
optional

Transport Entry Amount

number

6.49. EntryNominationResponseDto

Name Schema

items
optional

page
optional

totals
optional

6.50. ExitNominationExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.51. ExitNominationRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.52. ExitNominationResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

exitNominationAmount
optional

Transport Exit Amount

number

6.53. ExitNominationResponseDto

Name Schema

items
optional

page
optional

totals
optional

6.54. GddkAmountsDataDto

Name Description Schema

credit
optional

Retroactive Adjustment Sum Receivable (TL)

number

dept
optional

Retroactive Adjustment Sum Liability (TL)

number

period
optional

Period

string (date-time)

version
optional

Version

string (date-time)

6.55. GddkAmountsExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.56. GddkAmountsRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.57. GddkAmountsResponseDto

Name Schema

items
optional

< GddkAmountsDataDto > array

page
optional

statistics
optional

6.58. GddkAmountsStatisticsDto

Name Schema

credit
optional

number

debt
optional

number

6.59. GgfExportRequestDto

Name Description Schema

deliveryPeriod
optional

Information Of Delivery Period
Example : "Q1"

string

deliveryYear
optional

Information Of Year
Example : "2001"

string

endDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

isTransactionPeriod
required

Boolean Value Of Transaction Period
Example : true

boolean

page
optional

Sayfalama bilgisi.

startDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.60. GgfRequestDto

Name Description Schema

deliveryPeriod
optional

Information Of Delivery Period
Example : "Q1"

string

deliveryYear
optional

Information Of Year
Example : "2001"

string

endDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

isTransactionPeriod
required

Boolean Value Of Transaction Period
Example : true

boolean

page
optional

Sayfalama bilgisi.

startDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.61. GgfResponseDataDto

Name Description Schema

contractName
optional

Contract

string

price
optional

Total Trade Volume

number

priceEur
optional

Total Trade Volume

number

priceUsd
optional

Total Trade Volume

number

transactionDate
optional

Gas Day

string (date-time)

6.62. GgfResponseDto

Name Schema

items
optional

< GgfResponseDataDto > array

page
optional

6.63. GrfMatchQuantityExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.64. GrfMatchQuantityRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.65. GrfMatchQuantityResponseDataDto

Name Description Schema

amount
optional

Matched Quantity for DRP

integer

gasDay
optional

Gas Day

string (date-time)

6.66. GrfMatchQuantityResponseDto

Name Schema

items
optional

page
optional

6.67. GrfTradeVolumeExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.68. GrfTradeVolumeRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.69. GrfTradeVolumeResponseDataDto

Name Description Schema

gasDay
optional

Gas Day

string (date-time)

tradeValue
optional

GRP Trade Volume (TL)

number

6.70. GrfTradeVolumeResponseDto

Name Schema

items
optional

page
optional

6.71. ImbalanceSystemExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.72. ImbalanceSystemRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.73. ImbalanceSystemResponseDataDto

Name Description Schema

gasDay
optional

Gas Day

string (date-time)

imbalance
optional

System Balance(stdm3)

number

6.74. ImbalanceSystemResponseDto

Name Schema

items
optional

page
optional

6.75. MarketParticipantExportRequestDto

Name Description Schema

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

organizationId
optional

Organization id of the request
Example : 1234

integer (int32)

page
optional

Sayfalama bilgisi.

period
required

Period
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.76. MarketParticipantRequestDto

Name Description Schema

organizationId
optional

Organization id of the request
Example : 1234

integer (int32)

page
optional

Sayfalama bilgisi.

period
required

Period
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.77. MarketParticipantResponseDataDto

Name Description Schema

eic
optional

NAME

string

naturalGasMarketParticipation
optional

true

boolean

organizationName
optional

NAME

string

pkKod
optional

NAME

integer (int64)

tuzelKisilik
optional

true

boolean

vgpParticipation
optional

true

boolean

6.78. MarketParticipantResponseDto

Name Schema

items
optional

page
optional

6.79. MatchQuantityExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.80. MatchQuantityRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.81. MatchQuantityResponseDataDto

Name Description Schema

gasDay
optional

Gas Day

string (date-time)

matchAmount
optional

Match Quantity

integer

6.82. MatchQuantityResponseDto

Name Schema

items
optional

page
optional

6.83. MaxEntryAmountExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

pointId
optional

Point Id Of Point Name Information.
Example : 12

integer (int64)

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.84. MaxEntryAmountRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

pointId
optional

Point Id Of Point Name Information.
Example : 12

integer (int64)

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.85. MaxEntryAmountResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

maxEntryAmount
optional

Max Entry Amount Transfer

number

6.86. MaxEntryAmountResponseDto

Name Schema

items
optional

page
optional

6.87. MaxExitAmountExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

pointId
optional

Point Id Of Point Name Information.
Example : 12

integer (int64)

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.88. MaxExitAmountRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

pointId
optional

Point Id Of Point Name Information.
Example : 12

integer (int64)

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.89. MaxExitAmountResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

maxExitAmount
optional

Max Exit Amount Transfer

number

6.90. MaxExitAmountResponseDto

Name Schema

items
optional

page
optional

6.91. ModelAndView

Name Schema

empty
optional

boolean

model
optional

< string, object > map

modelMap
optional

< string, object > map

reference
optional

boolean

status
optional

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
optional

viewName
optional

string

6.92. NominationStatisticsDto

Name Schema

entryNominationTotal
optional

number

exitNominationTotal
optional

number

transferTotal
optional

number

6.93. OpenPositionExportRequestDto

Name Description Schema

deliveryPeriod
optional

Information Of Delivery Period
Example : "Q1"

string

deliveryYear
optional

Information Of Year
Example : "2001"

string

endDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

isTransactionPeriod
required

Boolean Value Of Transaction Period
Example : true

boolean

page
optional

Sayfalama bilgisi.

startDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.94. OpenPositionRequestDto

Name Description Schema

deliveryPeriod
optional

Information Of Delivery Period
Example : "Q1"

string

deliveryYear
optional

Information Of Year
Example : "2001"

string

endDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

isTransactionPeriod
required

Boolean Value Of Transaction Period
Example : true

boolean

page
optional

Sayfalama bilgisi.

startDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.95. OpenPositionResponseDataDto

Name Description Schema

contractName
optional

Contract

string

openPosition
optional

Total Trade Volume

number

transactionDate
optional

Gas Day

string (date-time)

6.96. OpenPositionResponseDto

Name Schema

items
optional

page
optional

6.97. Page

Name Description Schema

number
optional

Related page number
Example : 1

integer (int64)

size
optional

Item count for a single page
Example : 20

integer (int64)

sort
optional

Special sorting configuration

total
optional

Total item count for the frontend apps, calculated and sent from the server side.
Example : 100

integer (int64)

6.98. ParticipantListResponseDataDto

Name Description Schema

id
optional

1234

integer (int32)

organizationName
optional

NAME

string

6.99. ParticipantListResponseDto

Name Schema

items
optional

page
optional

6.100. PhysicalRealizationExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.101. PhysicalRealizationRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.102. PhysicalRealizationResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

physicalEntry
optional

Physical Entry (Sm3)

number

physicalExit
optional

Physical Exit (Sm3)

number

6.103. PhysicalRealizationResponseDto

Name Schema

isAllowanceFinal
optional

boolean

items
optional

page
optional

statistics
optional

6.104. PhysicalRealizationStatisticsDto

Name Schema

totalEntry
optional

number

totalExit
optional

number

6.105. RealizationAmountStatisticsDto

Name Schema

realizedTotal
optional

number

6.106. RealizationEntryAmountExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.107. RealizationEntryAmountRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.108. RealizationEntryAmountResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

entryAmount
optional

Entry Amount

number

6.109. RealizationEntryAmountResponseDto

Name Schema

items
optional

page
optional

totals
optional

6.110. RealizationExitAmountExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.111. RealizationExitAmountRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.112. RealizationExitAmountResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

exitAmount
optional

Exit Amount

number

6.113. RealizationExitAmountResponseDto

Name Schema

items
optional

page
optional

totals
optional

6.114. RezerveEntryAmountExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

pointId
optional

Point Id Of Point Name Information.
Example : 12

integer (int64)

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.115. RezerveEntryAmountRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

pointId
optional

Point Id Of Point Name Information.
Example : 12

integer (int64)

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.116. RezerveEntryAmountResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

rezerveEntryAmount
optional

Entry Amount

number

6.117. RezerveEntryAmountResponseDto

Name Schema

items
optional

page
optional

6.118. RezerveExitAmountExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

pointId
optional

Point Id Of Point Name Information.
Example : 12

integer (int64)

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.119. RezerveExitAmountRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

pointId
optional

Point Id Of Point Name Information.
Example : 12

integer (int64)

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.120. RezerveExitAmountResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

rezerveExitAmount
optional

Entry Amount

number

6.121. RezerveExitAmountResponseDto

Name Schema

items
optional

page
optional

6.122. SortDTO

Name Description Schema

direction
optional

Sort direction (ASC or DESC)
Example : "ASC"

enum (ASC, DESC)

field
optional

Custom sorting field name
Example : "date"

string

6.123. StockAmountExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.124. StockAmountRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.125. StockAmountResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

stockAmount
optional

Exit Amount

number

6.126. StockAmountResponseDto

Name Schema

items
optional

page
optional

6.127. StorageFacilityResponseDataDto

Name Description Schema

storageFacilityId
optional

1234

integer (int64)

storageFacilityName
optional

NAME

string

6.128. StorageFacilityResponseDto

Name Schema

items
optional

page
optional

6.129. StpBlueCodeDataDto

Name Description Schema

amount
optional

Matched Quantity

number

contractName
optional

Contract

string

weightedAverage
optional

Weighted Average Price

number

6.130. StpBlueCodeExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.131. StpBlueCodeRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.132. StpBlueCodeResponseDto

Name Schema

items
optional

< StpBlueCodeDataDto > array

page
optional

6.133. StpFourCodeDataDto

Name Description Schema

amount
optional

Matched Quantity

number

contractName
optional

Contract

string

weightedAverage
optional

Weighted Average Price

number

6.134. StpFourCodeExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.135. StpFourCodeRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.136. StpFourCodeResponseDto

Name Schema

items
optional

< StpFourCodeDataDto > array

page
optional

6.137. StpGreenCodeDataDto

Name Description Schema

amount
optional

Matched Quantity

integer

contractName
optional

Contract

string

gasDay
optional

Effected Gas Day

string (date-time)

transactionDate
optional

Transaction Date

string (date-time)

weightedAverage
optional

Weighted Average Price

number

6.138. StpGreenCodeExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.139. StpGreenCodeRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.140. StpGreenCodeResponseDto

Name Schema

items
optional

page
optional

6.141. StpImbalanceAmountExportRequestDto

Name Description Schema

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

period
required

Period
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.142. StpImbalanceAmountRequestDto

Name Description Schema

page
optional

Sayfalama bilgisi.

period
required

Period
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.143. StpImbalanceAmountResponseDataDto

Name Description Schema

gasDay
optional

Gas Day

string (date-time)

negativeImbalance
optional

Negative Imbalance Amount(TL)

number

positiveImbalance
optional

Positive Imbalance Amount(TL)

number

6.144. StpImbalanceAmountResponseDto

Name Schema

items
optional

page
optional

statistics
optional

6.145. StpImbalanceAmountResponseTotalDataDto

Name Schema

gasDay
optional

string (date-time)

totalOfNegativeImbalance
optional

number

totalOfPositiveImbalance
optional

number

6.146. StpLatestReconciliationDateResponseDto

Name Description Schema

stpLatestReconciliationDate
optional

Sgp Last Reconciliation Date

string (date-time)

6.147. StpOrangeCodeDataDto

Name Description Schema

amount
optional

Matched Quantity

integer

contractName
optional

Contract

string

gasDay
optional

Effected Gas Day

string (date-time)

transactionDate
optional

Transaction Date

string (date-time)

weightedAverage
optional

Weighted Average Price

number

6.148. StpOrangeCodeExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.149. StpOrangeCodeRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.150. StpOrangeCodeResponseDto

Name Schema

items
optional

page
optional

6.151. StpPriceDataDto

Name Description Schema

dayAfterPrice
optional

After Day Price (ADP)(TL/1000 sm3)

number

dayAheadPrice
optional

Day Ahead Price (DAP)(TL/1000 sm3)

number

gasDay
optional

Gas Day

string (date-time)

intraDayPrice
optional

Intraday Price (IDP)(TL/1000 sm3)

number

weightedAverage
optional

Weighted Average Price(TL/1000 sm3)

number

6.152. StpPriceExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.153. StpPriceRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.154. StpPriceResponseDto

Name Schema

items
optional

< StpPriceDataDto > array

page
optional

6.155. StpShippersImbalanceQuantityExportRequestDto

Name Description Schema

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

period
required

Period
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.156. StpShippersImbalanceQuantityRequestDto

Name Description Schema

page
optional

Sayfalama bilgisi.

period
required

Period
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.157. StpShippersImbalanceQuantityResponseDataDto

Name Description Schema

gasDay
optional

Gas Day

string (date-time)

negativeImbalance
optional

Negative Imbalance Quantity (cm3)

number

positiveImbalance
optional

Positive Imbalance Quantity (cm3)

number

6.158. StpShippersImbalanceQuantityResponseDto

Name Schema

isAllowanceFinal
optional

boolean

items
optional

page
optional

6.159. StpWeeklyRefPriceDataDto

Name Description Schema

week
optional

WEEK

string

weekTotalPrice
optional

HT

number

weekdayPrice
optional

HI

number

weekendPrice
optional

HS

number

weeklyRefPrice
optional

HRF

number

6.160. StpWeeklyRefPriceExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.161. StpWeeklyRefPriceRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.162. StpWeeklyRefPriceResponseDto

Name Schema

items
optional

page
optional

6.163. SystemDirectionExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.164. SystemDirectionRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.165. SystemDirectionResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

systemDirection
optional

System Balance

string

6.166. SystemDirectionResponseDto

Name Schema

isAllowanceFinal
optional

boolean

items
optional

page
optional

6.167. TotalTradeVolumeExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.168. TotalTradeVolumeRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.169. TotalTradeVolumeResponseDataDto

Name Description Schema

gasDay
optional

Gas Day

string (date-time)

tradeVolume
optional

Total Trade Volume

number

6.170. TotalTradeVolumeResponseDto

Name Schema

items
optional

page
optional

6.171. TransactionHistoryDataDto

Name Description Schema

contractName
optional

Contract Name

string

date
optional

Date

string (date-time)

price
optional

Matched Price

number

quantity
optional

Matched Quantity

integer

time
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

6.172. TransactionHistoryExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.173. TransactionHistoryRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.174. TransactionHistoryResponseDto

Name Schema

items
optional

page
optional

6.175. TransferResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

transfer
optional

Day End Amount

number

6.176. TransferResponseDto

Name Schema

items
optional

page
optional

totals
optional

6.177. VgpMatchingQuantityDataDto

Name Description Schema

contractName
optional

Contract name

string

date
optional

Transaction date

string (date-time)

marketMatchingQuantity
optional

Matching Amount(1000.Sm3/day)

number

6.178. VgpMatchingQuantityExportRequestDto

Name Description Schema

deliveryPeriod
optional

Information Of Delivery Period
Example : "Q1"

string

deliveryYear
optional

Information Of Year
Example : "2001"

string

endDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

isTransactionPeriod
required

Boolean Value Of Transaction Period
Example : true

boolean

page
optional

Sayfalama bilgisi.

startDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.179. VgpMatchingQuantityRequestDto

Name Description Schema

deliveryPeriod
optional

Information Of Delivery Period
Example : "Q1"

string

deliveryYear
optional

Information Of Year
Example : "2001"

string

endDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

isTransactionPeriod
required

Boolean Value Of Transaction Period
Example : true

boolean

page
optional

Sayfalama bilgisi.

startDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.180. VgpMatchingQuantityResponseDto

Name Schema

items
optional

page
optional

6.181. VgpOfferPriceDataDto

Name Description Schema

bestBuyPrice
optional

VALUE_DATA_VGP_OFFER_PRICE_BESTBUYPRICE

number

bestSellPrice
optional

Best Ask Price (TL/1000.Sm3)

number

contractName
optional

Contract Name

string

deliveryPeriod
optional

VALUE_DATA_VGP_OFFER_PRICE_DELIVERYPERIOD

string

fdo
optional

Change Rate by Last Match Price%

number

lastMatchPrice
optional

Last Matching Price(TL/1000.Sm3)

number

6.182. VgpOfferPriceExportRequestDto

Name Description Schema

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

6.183. VgpOfferPriceRequestDto

Name Description Schema

page
optional

Sayfalama bilgisi.

6.184. VgpOfferPriceResponseDto

Name Schema

items
optional

page
optional

6.185. VgpTransactionHistoryExportRequestDto

Name Description Schema

deliveryPeriod
optional

Information Of Delivery Period
Example : "Q1"

string

deliveryYear
optional

Information Of Year
Example : "2001"

string

endDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

isTransactionPeriod
required

Boolean Value Of Transaction Period
Example : true

boolean

page
optional

Sayfalama bilgisi.

startDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.186. VgpTransactionHistoryRequestDto

Name Description Schema

deliveryPeriod
optional

Information Of Delivery Period
Example : "Q1"

string

deliveryYear
optional

Information Of Year
Example : "2001"

string

endDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

isTransactionPeriod
required

Boolean Value Of Transaction Period
Example : true

boolean

page
optional

Sayfalama bilgisi.

startDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.187. VgpTransactionHistoryResponseDataDto

Name Description Schema

contractName
optional

Contract Name

string

date
optional

Transaction Date

string (date-time)

matchTime
optional

Transaction Time

string (date-time)

matchingPrice
optional

Matching Price(TL/1000.Sm3)

number

matchingQuantity
optional

Matching Amount(TL/1000.Sm3)

number

6.188. VgpTransactionHistoryResponseDto

Name Schema

items
optional

page
optional

6.189. VgpVolumeDataDto

Name Description Schema

contractName
optional

Contract name

string

date
optional

Transaction date

string (date-time)

volume
optional

Trading Volume

number

6.190. VgpVolumeExportRequestDto

Name Description Schema

deliveryPeriod
optional

Information Of Delivery Period
Example : "Q1"

string

deliveryYear
optional

Information Of Year
Example : "2001"

string

endDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

isTransactionPeriod
required

Boolean Value Of Transaction Period
Example : true

boolean

page
optional

Sayfalama bilgisi.

startDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.191. VgpVolumeRequestDto

Name Description Schema

deliveryPeriod
optional

Information Of Delivery Period
Example : "Q1"

string

deliveryYear
optional

Information Of Year
Example : "2001"

string

endDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

isTransactionPeriod
required

Boolean Value Of Transaction Period
Example : true

boolean

page
optional

Sayfalama bilgisi.

startDate
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.192. VgpVolumeResponseDto

Name Schema

items
optional

< VgpVolumeDataDto > array

page
optional

6.193. View

Name Schema

contentType
optional

string

6.194. VirtualRealizationExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.195. VirtualRealizationRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.196. VirtualRealizationResponseDataDto

Name Description Schema

date
optional

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.

string (date-time)

virtualEntry
optional

Virtual Entry (Sm3)

number

virtualExit
optional

Virtual Exit (Sm3)

number

6.197. VirtualRealizationResponseDto

Name Schema

isAllowanceFinal
optional

boolean

items
optional

page
optional

statistics
optional

6.198. VirtualRealizationStatisticsDto

Name Schema

totalEntry
optional

number

totalExit
optional

number

6.199. VirtualTradeExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.200. VirtualTradeRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.201. VirtualTradeStatisticsDto

Name Schema

dayAheadTotal
optional

number

dayEndTotal
optional

number

transferTotal
optional

number

6.202. WeeklyMatchQuantityExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.203. WeeklyMatchQuantityRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.204. WeeklyMatchQuantityResponseDataDto

Name Description Schema

emTotal
optional

TOTAL

number

hiem
optional

HIEM

number

hsem
optional

HSEM

number

htem
optional

HTEM

number

week
optional

WEEK

string

6.205. WeeklyMatchQuantityResponseDto

Name Schema

items
optional

page
optional

6.206. WeeklyTradeVolumeDataDto

Name Description Schema

hiih
optional

HIIH

number

hsih
optional

HSIH

number

htih
optional

HTIH

number

ihTotal
optional

TOTAL

number

week
optional

WEEK

string

6.207. WeeklyTradeVolumeExportRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

exportType
required

XLSX, CSV ya da PDF
Example : "XLSX"

enum (XLSX, CSV, PDF)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.208. WeeklyTradeVolumeRequestDto

Name Description Schema

endDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

page
optional

Sayfalama bilgisi.

startDate
required

2023-01-01T00:00:00+03:00 formatında başlangıç tarihi bilgisi.
Example : "2021-01-01T00:00:00+03:00"

string (date-time)

6.209. WeeklyTradeVolumeResponseDto

Name Schema

items
optional

page
optional