search_filings
金融庁EDINETから上場企業等の開示書類(有価証券報告書・四半期報告書・大量保有報告書など)を検索する。企業名または証券コードで、直近N日分(最大31日)の提出書類を横断検索。投資リサーチ・信用調査・競合分析に使う。
Parameters5
| company | string | optional | 企業名(部分一致。例: トヨタ) |
| sec_code | string | optional | 証券コード4桁(例: 7203) |
| doc_type | string | optional | 書類種別で絞り込み |
| days_back | integer | optional | 何日前まで遡るか(1〜31) |
| max_results | integer | optional | 最大件数 |
Raw schema
{
"type": "object",
"properties": {
"company": {
"description": "企業名(部分一致。例: トヨタ)",
"type": "string"
},
"sec_code": {
"description": "証券コード4桁(例: 7203)",
"type": "string"
},
"doc_type": {
"default": "all",
"description": "書類種別で絞り込み",
"type": "string",
"enum": [
"有価証券報告書",
"四半期報告書",
"半期報告書",
"臨時報告書",
"大量保有報告書",
"有価証券届出書",
"all"
]
},
"days_back": {
"default": 7,
"description": "何日前まで遡るか(1〜31)",
"type": "integer",
"minimum": 1,
"maximum": 31
},
"max_results": {
"default": 10,
"description": "最大件数",
"type": "integer",
"minimum": 1,
"maximum": 50
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}