πŸ“‰Indices information API

You can get information about price of indices.

Daily TOPIX information

Indices price data available since January 2021.

Available index is TOPIX(Tokyo Stock Price IndexοΌ‰.

In your request message, "from/to" can be specified (Optional).

If "from/to" is not specified, the response contains all historical data.

Get daily TOPIX information

GET https://api.jpx-jquants.com/v1/indices/topix

"from/to" can be specified (Optional).

"*" Required.

Query Parameters

NameTypeDescription

from

String

starting point of data period

(e.g. 20210901 or 2021-09-01

to

String

end point of data period

(e.g. 20210907 or 2021-09-07οΌ‰

Headers

NameTypeDescription

Authorization*

String

Access Key

{
    "topix": [
        {
            "Date": "20220628",
            "Open": 1885.52,
            "High": 1907.38,
            "Low": 1885.32,
            "Close": 1907.38,
        }
    ]
}
VariablesDescriptionData typeExamples

Date

Date

String

20170113

Open

Open Price

Number

1683

Close

Close price

Number

1692

Low

Low price

Number

1673

High

High price

Number

1704

idToken=<YOUR idToken> && curl https://api.jpx-jquants.com/v1/indices/topix -H "Authorization: Bearer $idToken" 

Last updated