Skip to main content

アメリカ合衆国の法人検証

Verifik の法人検証 API は、SEC EDGAR の公的データを用いて米国企業を照会します。KYB(Know Your Business)の効率化、不正防止、コンプライアンス対応を目的としています。

この API で確認できること

  • 企業名・基本情報: 商号(全文または一部)による検索に対応します。
  • 企業属性: 社名、CIK、EIN、住所、エンティティ種別、上場取引所、ティッカー、SIC などを返します。
  • 整合性: SEC の公式記録と突合できる情報を返します。

API リファレンス

エンドポイント

POST https://api.verifik.co/v2/usa/company

米国企業を 商号 で照会します。business を JSON ボディに含めた POST リクエストで送信します。

ヘッダー

名前
Content-Typeapplication/json
AuthorizationBearer <token>

パラメーター

名前必須説明
businessstringはい企業名(全文または一部)。

リクエスト

import axios from "axios";

const { data } = await axios.post(
"https://api.verifik.co/v2/usa/company",
{ business: "APPLE INC" },
{ headers: { "Content-Type": "application/json", Authorization: `Bearer ${process.env.VERIFIK_TOKEN}` } }
);
console.log(data);

レスポンス

{
"data": {
"addresses": {
"mailing": {
"street1": "ONE APPLE PARK WAY",
"street2": null,
"city": "CUPERTINO",
"stateOrCountry": "CA",
"zipCode": "95014",
"stateOrCountryDescription": "CA",
"isForeignLocation": 0,
"foreignStateTerritory": null,
"country": null,
"countryCode": null
},
"business": {
"street1": "ONE APPLE PARK WAY",
"street2": null,
"city": "CUPERTINO",
"stateOrCountry": "CA",
"zipCode": "95014",
"stateOrCountryDescription": "CA",
"isForeignLocation": null,
"foreignStateTerritory": null,
"country": null,
"countryCode": null
}
},
"categor": "Large accelerated filer",
"cik": "0000320193",
"description": "",
"ein": "942404110",
"entityType": "operating",
"exchanges": [
"Nasdaq"
],
"fiscalYearEnd": "0927",
"flags": "",
"formerNames": [
{
"name": "APPLE INC",
"from": "2007-01-10T05:00:00.000Z",
"to": "2019-08-05T04:00:00.000Z"
},
{
"name": "APPLE COMPUTER INC",
"from": "1994-01-26T05:00:00.000Z",
"to": "2007-01-04T05:00:00.000Z"
},
{
"name": "APPLE COMPUTER INC/ FA",
"from": "1997-07-28T04:00:00.000Z",
"to": "1997-07-28T04:00:00.000Z"
}
],
"investorWebsite": "",
"name": "Apple Inc.",
"phone": "(408) 996-1010",
"sic": "3571",
"sicDescription": "Electronic Computers",
"stateOfIncorporation": "CA",
"stateOfIncorporationDescription": "CA",
"tickers": [
"AAPL"
],
"website": "",
"business": "APPLE INC"
},
"signature": {
"dateTime": "October 10, 2025 5:45 PM",
"message": "Certified by Verifik.co"
},
"id": "N2A12"
}

メモ

  • 商号は具体的であるほど照合精度が上がります。部分一致も可能ですが、候補が複数返る場合があります。