📘財務情報 API

四半期の財務情報や翌日発表予定の決算情報が取得できます

四半期の財務情報

2017年1月以降のデータをもとに作成されております。

四半期の財務情報を取得することができます

GET https://api.jpx-jquants.com/v1/fins/statements

リクエストパラメータにcodeもしくはdateを入力する必要があります。

*は必須項目

Query Parameters

Headers

{
    "statements": [
        {
            "Profit": "4608000000",
            "ForecastDividendPerShare1stQuarter": "",
            "ForecastDividendPerShareFiscalYearEnd": "40.0",
            "NumberOfIssuedAndOutstandingSharesAtTheEndOfFiscalYearIncludingTreasuryStock": "63330838",
            "ForecastDividendPerShareAnnual": "80.0",
            "ForecastNetSales": "675000000000",
            "ChangesBasedOnRevisionsOfAccountingStandard": "true",
            "ResultDividendPerShareFiscalYearEnd": "",
            "CurrentFiscalYearStartDate": "2022-03-01",
            "MaterialChangesInSubsidiaries": "false",
            "AverageNumberOfShares": "61813505",
            "OrdinaryProfit": "6806000000",
            "ChangesInAccountingEstimates": "false",
            "DisclosedDate": "2022-06-28",
            "ForecastDividendPerShare3rdQuarter": "-",
            "CurrentFiscalYearEndDate": "2023-02-28",
            "CurrentPeriodEndDate": "2022-05-31",
            "ForecastDividendPerShare2ndQuarter": "40.0",
            "EquityToAssetRatio": "0.612",
            "TotalAssets": "348487000000",
            "OperatingProfit": "6671000000",
            "DisclosureNumber": "20220616580562",
            "ApplyingOfSpecificAccountingOfTheQuarterlyFinancialStatements": "",
            "ForecastEarningsPerShare": "291.2",
            "NumberOfTreasuryStockAtTheEndOfFiscalYear": "1517333",
            "ResultDividendPerShare2ndQuarter": "",
            "LocalCode": "76490",
            "TypeOfDocument": "1QFinancialStatements_Consolidated_JP",
            "ForecastOperatingProfit": "30000000000",
            "ResultDividendPerShareAnnual": "",
            "ForecastOrdinaryProfit": "31000000000",
            "ForecastProfit": "18000000000",
            "EarningsPerShare": "74.56",
            "DisclosedUnixTime": "1656430200.0",
            "Equity": "213285000000",
            "NetSales": "161128000000",
            "ChangesOtherThanOnesBasedOnRevisionsOfAccountingStandard": "false",
            "ResultDividendPerShare3rdQuarter": "",
            "BookValuePerShare": "3450.47",
            "ResultDividendPerShare1stQuarter": "-",
            "TypeOfCurrentPeriod": "1Q",
            "DisclosedTime": "15:30:00",
            "RetrospectiveRestatement": "false"
        }
    ]
}

idToken=<YOUR idToken> && curl https://api.jpx-jquants.com/v1/fins/statements?code=86970 -H "Authorization: Bearer $idToken" 

決算発表予定日

参考データ

下記のサイトで、3月期・9月期決算会社分に更新があった場合のみ19時ごろに更新されます。 https://www.jpx.co.jp/listing/event-schedules/financial-announcement/index.html

決算発表予定日の銘柄コード、年度、 四半期等の照会をします。

GET https://api.jpx-jquants.com/v1/fins/announcement

*は必須項目

Headers

{
  "announcement": [
    {
      "Code": "43760",
      "Date": "20220214",
      "CompanyName": "くふうカンパニー",
      "FiscalYear": "9月30日",
      "SectorName": "情報・通信業",
      "FiscalQuarter": "第1四半期",
      "Section": "マザーズ"
    }
  ]  
}
idToken=<YOUR idToken> && curl https://api.jpx-jquants.com/v1/fins/announcement -H "Authorization: Bearer $idToken" 

Last updated