OpenAPI 3.0 仕様書
全エンドポイントのリクエスト・レスポンス仕様を対話的に確認
API稼働状況
外部監視によるレスポンスタイムとダウンタイムの状況
LLM向け情報
AI・LLMエージェントからの利用方法と構造化テキスト
Endpoints
APIエンドポイント
すべてのレスポンスはJSON形式で返されます。認証は不要です。
GET
/corporations.json?s={検索ワード}
法人一覧検索
Request
$ curl https://corporation.teraren.com/corporations.json?s=日本 | jq
Response — 200 OK
{ "items": [ { "corporate_number": 1430001000087, "process": "01", "correct": 0, "update_date": "2015-10-30", "change_date": "2015-10-05", "name": "新日本建設株式会社", "image_id": null, "kind": "301", "prefecture_name": "北海道", "city_name": "札幌市東区", "street_number": "北二十一条東18丁目5番15号", "address_image_id": null, "prefecture_code": "01" }, ... ] }
GET
/corporations/{corporate_number}.json
法人個別取得
Request
$ curl https://corporation.teraren.com/corporations/1430001002918.json | jq
Response — 200 OK
{ "corporate_number": 1430001002918, "process": "01", "correct": 0, "update_date": "2015-10-30", "change_date": "2015-10-05", "name": "株式会社大阪商会統轄本部", "image_id": null, "kind": "301", "prefecture_name": "北海道", "city_name": "札幌市豊平区", "street_number": "美園八条7丁目1番1号", "address_image_id": null, "prefecture_code": "01" }
Reference
利用可能なエンドポイント一覧
ベースURL: https://corporation.teraren.com
| メソッド | パス | 説明 | パラメータ |
|---|---|---|---|
| GET | /corporations.json | 法人一覧検索 | s={検索ワード} |
| GET | /corporations/{number}.json | 法人個別取得 | - |
| GET | /invoice_registration_numbers.json | インボイス登録番号検索 | s={検索ワード} |
| GET | /invoice_registration_numbers/{number}.json | インボイス登録番号個別取得 | - |
| GET | /edinets.json | EDINET一覧検索 | s={検索ワード} |
| GET | /edinets/{code}.json | EDINET個別取得 | - |
| GET | /postcodes.json | 郵便番号検索 | s={検索ワード} |