Skip to main content

Estados Unidos

Endpoint

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

Devuelve información para una empresa estadounidense por nombre empresarial.

Headers

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parámetros

NameTypeRequiredDescription
businessstringYesNombre completo o parcial de la empresa.

Solicitud

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);

Respuesta

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

Notas

  • Usa nombres precisos para mejor calidad de coincidencia; se aceptan nombres parciales pero pueden devolver múltiples resultados.