🇺🇸Estados Unidos

Servicio para consultar empresas de EE. UU. usando su nombre.

Endpoint

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

Este servicio proporciona información detallada sobre una empresa con sede en EE. UU. especificada por su nombre comercial. Incluye datos completos como direcciones, detalles de identificación de la empresa, listados en bolsas de valores y nombres históricos. Este servicio es ideal para realizar investigaciones corporativas o verificar información empresarial.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Required?
Description
Example

business

String

True

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

APPLE INC

Name
Type
Description

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 {
  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