🇦🇷Argentina

Service to query Argentine companies using the CUIT (Unique Tax Identification Code).

Argentine Companies Information

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

The Argentine Companies Information service provides detailed information about companies registered in Argentina.

Users can query the service using the type and number of the company's document, such as CUIT (Unique Tax Identification Code), along with its corresponding number.

The response includes essential details such as the CUIT number, trade name, legal form, and the date of the articles of association. Additionally, the service provides information about the company's economic activities, including primary and secondary activities, along with their start dates.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Body

NameTypeRequired?DescriptionExample

documentType

String

True

Document type. Allowed value: CUIT.

CUIT

documentNumber

String

True

Document number of the company to be queried, without spaces or dots, and must be 11 digits.

33516727409

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/ar/company>',
  params: {documentType: 'CUIT', documentNumber: '33-51672740-9'},
  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": {
    "CUIT": "33-51672740-9",
    "business": "LUIS DUSSO Y CIA SOCIEDAD ANONIMA COMERCIAL AGRICOLA GANADERA",
    "documentNumber": "33516727409",
    "documentType": "CUIT",
    "economicActivities": [
      "Actividad principal:",
      "461011 (F-883)",
      "VENTA AL POR MAYOR EN COMISIÓN O CONSIGNACIÓN DE CEREALES (INCLUYE ARROZ), OLEAGINOSAS Y FORRAJERAS EXCEPTO SEMILLAS",
      "Mes deinicio:   11/2013",
      "Secundaria(s):",
      "11112 (F-883)",
      "CULTIVO DE TRIGO",
      "Mes de inicio:   11/2013",
      "",
      "11121 (F-883)",
      "CULTIVO DE MAÍZ",
      "Mes de inicio:   11/2013",
      "",
      "11129 (F-883)",
      "CULTIVO DE CEREALES DE USO FORRAJERO N.C.P.",
      "Mes de inicio:   11/2013",
      "",
      "11211 (F-883)",
      "CULTIVO DE SOJA",
      "Mes de inicio:   11/2013",
      "",
      "462131 (F-883)",
      "VENTA AL POR MAYOR DE CEREALES (INCLUYE ARROZ), OLEAGINOSAS Y FORRAJERAS EXCEPTO SEMILLAS",
      "Mes de inicio:   11/2013",
      "",
      "492221 (F-883)",
      "SERVICIO DE TRANSPORTE AUTOMOTOR DE CEREALES",
      "Mes de inicio:   04/2014",
      "Mes decierre ejercicio comercial:   10"
    ],
    "legalForm": "SOC. ANONIMA",
    "socialContractDate": "12-12-1968"
  },
  "signature": {
    "dateTime": "February 21, 2024 7:53 PM",
    "message": "Certified by Verifik.co"
  },
  "id": "3WTK0"
}

Last updated