BIST Prices

This API returns BIST 100 and BIST 30 prices for selected date.

API Information

URL

/getBISTPrices

Method

POST

Version

1.0

Scope

public

Authorization Flow

Client Credentials


Input Information

Name Format Description Required/Optional

SessionDate

yyyy-MM-ddTHH24:mm:ss Session date Required


Output Information

List< SessionPrice >

Name Format Description

LastTransactionPrice

Decimal Last transaction price

StockCode

String Stock code

PriceDate

yyyy-MM-ddTHH24:mm:ss Price date


Message Codes

Message Code Description

ACBH000023

Date format is incorrect.

ACBH000083

Date cannot be greater than today.

Example

Request:

{
    "SessionDate": "2021-03-26T00:00:00+03:00"
} 

Response:

{
    "Header": {
        "StatusCode": "APIGW000000",
        "StatusDescription": "Tamamlandı",
        "StatusDescriptionEn": "Completed",
        "ObjectID": "0e65bfd9-41b3-400c-9322-7682e01e9f1e"
    },
    "Data": {
        "SessionPrice": [
            {
                "PriceDate": "2021-03-26T11:12:06+03:00",
                "LastTransactionPrice": 1438.05,
                "StockCode": "XU030"
            },
            {
                "PriceDate": "2021-03-26T11:12:06+03:00",
                "LastTransactionPrice": 1399.92,
                "StockCode": "XU100"
            }
        ]
    }
}