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.

Parámetros

Name Type ¿Required? Description Example
business String True Name of the company, you can send the partial name or the full name. APPLE INC

Implementation

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 200 - (Successful 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"
}

Other response

Code Description Response Body
404 Not Found Information not found. {
"code": "NotFound",
"message": "No existe contribuyente asociado a la CUIT ingresada",
"signature": {
"dateTime": "February 21, 2024 7:52 PM",
"message": "Certified by Verifik.co"
}
}
409 Conflict Some parameters are missing. {
"code": "MissingParameter",
"message": "missing business\n"
}