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.
Name | Type | ¿Required? | Description | Example |
---|---|---|---|---|
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 |
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);
}
{
"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"
}
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 documentType\n. missing documentNumber\n" | |||
} | |||
409 |
Conflict | Invalid documentType for this query. | { |
"code": "MissingParameter", | |||
"message": "documentType must be one of: [CUIT]" | |||
} |