search_companies
日本の法人データベース(経産省gBizINFO、約100万社超の活動情報)から営業リード候補を検索する。都道府県・従業員数・資本金・売上・設立年・補助金受給歴の有無で絞り込める。結果のcorporate_number(法人番号)をget_company_profile / get_company_subsidiesに渡すと詳細が取れる。
Parameters10
| name | string | optional | 法人名(部分一致) |
| prefecture | string | optional | 都道府県名(例: 東京都) |
| employees_min | integer | optional | 従業員数の下限 |
| employees_max | integer | optional | 従業員数の上限 |
| capital_min_yen | integer | optional | 資本金の下限(円) |
| capital_max_yen | integer | optional | 資本金の上限(円) |
| founded_year | integer | optional | 設立年(例: 2015) |
| with_subsidy_history | boolean | optional | trueで国の補助金受給歴がある企業に限定(予算獲得力・投資意欲のシグナル) |
| max_results | integer | optional | 最大件数(1〜50) |
| page | integer | optional | ページ番号(1〜10) |
Raw schema
{
"type": "object",
"properties": {
"name": {
"description": "法人名(部分一致)",
"type": "string"
},
"prefecture": {
"description": "都道府県名(例: 東京都)",
"type": "string"
},
"employees_min": {
"description": "従業員数の下限",
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
"employees_max": {
"description": "従業員数の上限",
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
"capital_min_yen": {
"description": "資本金の下限(円)",
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
"capital_max_yen": {
"description": "資本金の上限(円)",
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
"founded_year": {
"description": "設立年(例: 2015)",
"type": "integer",
"minimum": -9007199254740991,
"maximum": 9007199254740991
},
"with_subsidy_history": {
"default": false,
"description": "trueで国の補助金受給歴がある企業に限定(予算獲得力・投資意欲のシグナル)",
"type": "boolean"
},
"max_results": {
"default": 10,
"description": "最大件数(1〜50)",
"type": "integer",
"minimum": 1,
"maximum": 50
},
"page": {
"default": 1,
"description": "ページ番号(1〜10)",
"type": "integer",
"minimum": 1,
"maximum": 10
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}