Earnings Calendar (/equities/earnings-calendar)
GET /v2/equities/earnings-calendar
Overview
This API provides the announcement date of financial results. For now, companies with fiscal year ends in March or September can be obtained. (Companies with fiscal year ends in other month will be supported in the future.)
Attention
- It will be updated at around 19:00 (JST) only when there is an update for companies which end their fiscal year in March or September at the following site. If there are no updates for companies which end their fiscal year in March or September, the data as of the last update is provided by this API.
https://www.jpx.co.jp/english/listing/event-schedules/financial-announcement/index.html - This API returns information about stocks whose financial results will be announced on the next business day.
- If there is no record with the next business day in the data obtained from the API, it means that there are no companies scheduled to disclose on the next business day among the companies with fiscal year ends in March or September.
- REIT data is not included.
Inquire the issue code, fiscal year, and quarter scheduled to be announced.
GET https://api.jquants.com/v2/equities/earnings-calendar
Requests
Headers
- x-api-keystringrequired
API Key
Query Parameters
- pagination_keystringoptional
The primary key of the first item that this operation will evaluate.
Use the value that was returned forpagination_keyin the previous operation.
Sample Code
Request
GET
/v2/equities/earnings-calendarcurl -G https://api.jquants.com/v2/equities/earnings-calendar \
-H "x-api-key: {loading}"Responses
Data Item
- Datestring
Date (YYYY-MM-DD)
If the earnings announcement date is undecided, the data will be an empty string ("").- Codestring
- Issue code
- CoNamestring
- Company name (Japanese)
- FYstring
- End of Fiscal year (Japanese)
- SectorNmstring
- Sector name (Japanese)
- FQstring
- Fiscal quarter (Japanese)
- Sectionstring
- Market segment name (Japanese)
Response Sample
{
"data": [
{
"Date": "2022-02-14",
"Code": "43760",
"CoName": "くふうカンパニー",
"FY": "9月30日",
"SectorNm": "情報・通信業",
"FQ": "第1四半期",
"Section": "マザーズ"
}
],
"pagination_key": "value1.value2."
}