Morning Session Stock Prices (OHLC) (/equities/bars/daily/am)

GET /v2/equities/bars/daily/am

Overview

You can obtain the morning session's high, low, opening, and closing prices for individual stocks as quick updates at noon.

Attention

  • Null is recorded for the open, high, low, close, volume and trading value for stocks for which there is no trading volume in the morning session.
  • Stocks that are not listed on the TSE (including issue listed only on the other exchanges) are not included in the data.
  • Data for the day can be obtained until around 6:00 the next day. For historical data, please use Stock Prices (OHLC).

Get stock prices in the morning session

GET https://api.jquants.com/v2/equities/bars/daily/am

In your request message, "code" can be specified.

Parameter and Response

In your request message, "code" can be specified.
Parameter in the request and results are as below.

codeResults
A specified issue price in the morning session
All listed issue prices in the morning session

Requests

Headers

x-api-keystringrequired

API Key

Query Parameters

codestringoptional

Issue code (e.g. 27800 or 2780)
If a 4-character issue code is specified, only the data of common stock will be obtained for the issue on which both common and preferred stocks are listed.

pagination_keystringoptional

The primary key of the first item that this operation will evaluate.
Use the value that was returned for pagination_key in the previous operation.

Sample Code

Request

GET
/v2/equities/bars/daily/am
curl -G https://api.jquants.com/v2/equities/bars/daily/am \
-H "x-api-key: {loading}" \
-d code="39400"

Responses

Data Item

Datestring
Date (YYYY-MM-DD)
Codestring
Issue code
MOnumber
Open price of the morning session
MHnumber
High price of the morning session
MLnumber
Low price of the morning session
MCnumber
Close price of the morning session
MVonumber
Trading volume of the morning session
MVanumber
Trading value of the morning session

Response Sample

{
    "data": [
        {
            "Date": "2023-03-20",
            "Code": "39400",
            "MO": 232.0,
            "MH": 244.0,
            "ML": 232.0,
            "MC": 240.0,
            "MVo": 52600.0,
            "MVa": 12518800.0
        }
    ],
    "pagination_key": "value1.value2."
}

Was this page helpful?