コンテンツにスキップ
IRBANK API はベータ提供中です。仕様は予告なく変更される場合があります。
IRBANK API ドキュメント
Esc
navigateopen⌘Jpreview

人物の役員報酬履歴

企業ごとの年度別役員報酬(報酬 1 億円超の個別開示に基づく)を返す。報酬データが無い人物は companies が空配列。該当データが 0 件のときは空配列とともに reason (code=no_results + 状況の説明) を返す。

GET/persons/{id}/compensation-history
Authorization
AuthorizationBearer token · headerrequired
IRBANK Connect (app.irbank.net/mcp-api) で発行した API キー
Path parameters
idstringrequired
人物 ID(数値文字列)
matches ^\d+$
Responses
200OK(報酬データなしの人物も 200 + 空配列)
person_idstringrequired
人物 ID
namestringrequired
氏名
companiesPersonCompanyCompensation[]required
企業別の報酬履歴。報酬データが無い人物は空配列
Show properties
Array of PersonCompanyCompensation
security_codestringrequired
証券コード (4 桁)
company_namestringrequired
企業名
historyPersonCompensationFiscalYear[]required
年度ごとの報酬(古い順)。報酬 1 億円超の個別開示行が対象
Show properties
Array of PersonCompensationFiscalYear
fiscal_period_endstringrequired
会計期末日 (YYYY-MM-DD)
total_compnumber | nullrequired
報酬総額(円)
fixed_compnumber | nullrequired
固定報酬(円)。内訳未取得の年度は null
performance_compnumber | nullrequired
業績連動報酬(円)。内訳未取得の年度は null
stock_compnumber | nullrequired
株式報酬(円)。内訳未取得の年度は null
reasonEmptyReason | anyrequired
本体データが空のとき、その理由 (機械可読な code + 説明・対処ヒント)。本体データが 1 件以上のときは null
Show properties
One of:
EmptyReason
codestringrequired
no_results: このリクエストに該当するデータが 0 件。収録が無い場合と、指定した条件に合致しない場合の両方を含む (両者は現状の実装では区別できないため、機械可読な値としては区別しない)。TDnet 由来の値は開示から 24 時間は収録に反映されないため、直近開示分は後から追加され得る
Allowed:no_results
messagestringrequired
0 件になった状況の説明 (英語)。人間向けの補足であり、分岐は code で行うこと (文面は予告なく改善されうる)
any
any
attributionAttributionrequired
Show properties
source_labelstringrequired
出典表示ラベル(第三者に表示する際はこの表記を使う)
license_notestringrequired
出典・再配信条件の注記
processed_bystringrequired
400パラメータが不正
errorobjectrequired
Show properties
codestringrequired
messagestringrequired
detailsExternalErrorDetail[]
Show properties
Array of ExternalErrorDetail
paramstringrequired
reasonstringrequired
Allowed:missingconflictinvalid_typeinvalid_formatout_of_rangeunknown_valuetoo_many_itemsinvalid
expectedstring
受理される値の要約(範囲・型・列挙値)。示せない場合は省略する
404人物が存在しない
errorobjectrequired
Show properties
codestringrequired
messagestringrequired
detailsExternalErrorDetail[]
Show properties
Array of ExternalErrorDetail
paramstringrequired
reasonstringrequired
Allowed:missingconflictinvalid_typeinvalid_formatout_of_rangeunknown_valuetoo_many_itemsinvalid
expectedstring
受理される値の要約(範囲・型・列挙値)。示せない場合は省略する
Request
curl -X GET "https://api.irbank.net/v1/persons/4837261950/compensation-history" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "person_id": "string",
  "name": "string",
  "companies": [
    {
      "security_code": "7203",
      "company_name": "トヨタ自動車",
      "history": [
        {
          "fiscal_period_end": "2024-03-31",
          "total_comp": 0,
          "fixed_comp": 0,
          "performance_comp": 0,
          "stock_comp": 0
        }
      ]
    }
  ],
  "reason": {
    "code": "no_results",
    "message": "No segment disclosure is currently recorded for this organization."
  },
  "attribution": {
    "source_label": "金融庁 EDINET / TDnet",
    "license_note": "string",
    "processed_by": "IRBANK"
  }
}