🇺🇸United States

Service to query US companies using their name.

United States Company Information Retrieval

GET - https://api.verifik.co/v2/usa/company

This service provides detailed information about a U.S.-based company specified by the business name. It includes comprehensive data such as addresses, company identification details, stock exchange listings, and historical names. This service is ideal for conducting corporate research or verifying business information.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Body

NameTypeRequired?DescriptionExample

business

String

True

Name of the company, you can send the partial name or the full name.

APPLE INC

NameTypeDescription

name

string

Name of the user

age

number

Age of the user

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/usa/company>',
  params: {business: 'APPLE INC'},
  headers: {
    Accept: 'application/json',
    Authorization: 'jwt <tu_token>'
  }
};

try {
 notFou const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

Response

{
  "data": {
    "addresses": {
      "mailing": {
        "street1": "ONE APPLE PARK WAY",
        "street2": null,
        "city": "CUPERTINO",
        "stateOrCountry": "CA",
        "zipCode": "95014",
        "stateOrCountryDescription": "CA"
      },
      "business": {
        "street1": "ONE APPLE PARK WAY",
        "street2": null,
        "city": "CUPERTINO",
        "stateOrCountry": "CA",
        "zipCode": "95014",
        "stateOrCountryDescription": "CA"
      }
    },
    "business": "APPLE INC",
    "cik": "320193",
    "description": "",
    "ein": "942404110",
    "entityType": "operating",
    "exchanges": [
      "Nasdaq"
    ],
    "fiscalYearEnd": "0928",
    "flags": "",
    "formerNames": [
      {
        "name": "APPLE INC",
        "from": "2007-01-10T00:00:00.000Z",
        "to": "2019-08-05T00:00:00.000Z"
      },
      {
        "name": "APPLE COMPUTER INC",
        "from": "1994-01-26T00:00:00.000Z",
        "to": "2007-01-04T00:00:00.000Z"
      },
      {
        "name": "APPLE COMPUTER INC/ FA",
        "from": "1997-07-28T00:00:00.000Z",
        "to": "1997-07-28T00:00:00.000Z"
      }
    ],
    "investorWebsite": "",
    "phone": "(408) 996-1010",
    "sic": "3571",
    "sicDescription": "Electronic Computers",
    "stateOfIncorporation": "CA",
    "stateOfIncorporationDescription": "CA",
    "tickers": [
      "AAPL"
    ],
    "website": ""
  },
  "signature": {
    "dateTime": "January 19, 2024 4:06 PM",
    "message": "Certified by Verifik.co"
  },
  "id": "Y12MC"
}

Last updated