発行体の大株主リスト
発行体起点の大株主リスト(EDINET 大量保有報告書ベース)。現在有効な保有情報を保有比率降順で返す。各数値プロパティの単位は fields[].unit に機械可読で付与 (self-describing)。該当データが 0 件のときは空配列とともに reason (code=no_results + 状況の説明) を返す。
GET
/shareholdersAuthorization
AuthorizationBearer token · headerrequiredIRBANK Connect (app.irbank.net/mcp-api) で発行した API キー
Query parameters
edinet_codestringrequired発行体 (被保有銘柄の発行者) の EDINET コード (E + 5 桁の数字)
matches ^[EG]\d{5}$
Responses
200OK
fieldsShareholderFieldUnit[]required数値プロパティの単位メタデータ (self-describing)
Show propertiesHide properties
Array of
ShareholderFieldUnitkeystringrequiredshareholders[] 各要素内の数値プロパティのキー
labelstringrequired日本語の表示名
unitstringrequired単位識別子 (percent / shares 等)
notestring補足
shareholdersShareholder[]required現在有効な大株主 (保有比率降順)。該当なしは空配列
Show propertiesHide properties
Array of
Shareholderholder_namestringrequired保有者名
holding_rationumberrequired保有比率 (%)
shares_heldnumberrequired保有株数 (株)
previous_rationumber | nullrequired前回報告時の保有比率 (%)。初回大量保有報告書は null
reasonEmptyReason | anyrequired本体データが空のとき、その理由 (機械可読な code + 説明・対処ヒント)。本体データが 1 件以上のときは null
Show propertiesHide properties
One of:
EmptyReason
codestringrequiredno_results: このリクエストに該当するデータが 0 件。収録が無い場合と、指定した条件に合致しない場合の両方を含む (両者は現状の実装では区別できないため、機械可読な値としては区別しない)。TDnet 由来の値は開示から 24 時間は収録に反映されないため、直近開示分は後から追加され得る
Allowed:
no_resultsmessagestringrequired0 件になった状況の説明 (英語)。人間向けの補足であり、分岐は code で行うこと (文面は予告なく改善されうる)
any
anyattributionAttributionrequiredShow propertiesHide properties
source_labelstringrequired出典表示ラベル(第三者に表示する際はこの表記を使う)
license_notestringrequired出典・再配信条件の注記
processed_bystringrequired400パラメータが不正
errorobjectrequiredShow propertiesHide properties
codestringrequiredmessagestringrequireddetailsExternalErrorDetail[]Show propertiesHide properties
Array of
ExternalErrorDetailparamstringrequiredreasonstringrequiredAllowed:
missingconflictinvalid_typeinvalid_formatout_of_rangeunknown_valuetoo_many_itemsinvalidexpectedstring受理される値の要約(範囲・型・列挙値)。示せない場合は省略する
404発行体が存在しないか上場法人でない
errorobjectrequiredShow propertiesHide properties
codestringrequiredmessagestringrequireddetailsExternalErrorDetail[]Show propertiesHide properties
Array of
ExternalErrorDetailparamstringrequiredreasonstringrequiredAllowed:
missingconflictinvalid_typeinvalid_formatout_of_rangeunknown_valuetoo_many_itemsinvalidexpectedstring受理される値の要約(範囲・型・列挙値)。示せない場合は省略する
Request
curl -X GET "https://api.irbank.net/v1/shareholders?edinet_code=E04430" \
-H "Authorization: Bearer YOUR_TOKEN"const response = await fetch("https://api.irbank.net/v1/shareholders?edinet_code=E04430", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
}
});import requests
response = requests.get(
"https://api.irbank.net/v1/shareholders?edinet_code=E04430",
headers={
"Authorization": "Bearer YOUR_TOKEN"
},
)Response
{
"fields": [
{
"key": "holding_ratio",
"label": "保有比率",
"unit": "percent",
"note": "string"
}
],
"shareholders": [
{
"holder_name": "string",
"holding_ratio": 0,
"shares_held": 0,
"previous_ratio": 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"
}
}{
"error": {
"code": "not_found",
"message": "Security not found",
"details": [
{
"param": "years",
"reason": "out_of_range",
"expected": ">= 1"
}
]
}
}{
"error": {
"code": "not_found",
"message": "Security not found",
"details": [
{
"param": "years",
"reason": "out_of_range",
"expected": ">= 1"
}
]
}
}