The Brazilian Company Information service provides information on Brazilian companies, including their legal nature, main and secondary activities, share capital, shareholders, status, and more. The service returns responses that include the company's name, tax ID, address, phone number, email, and other details.
This service is useful for businesses looking to verify information about potential partners or customers in Brazil, or for researchers looking to study the Brazilian business landscape.
Name | Type | ¿Required? | Description | Example |
---|---|---|---|---|
documentType | String | True |
Document type. Allowed value: CNPJ. | CNPJ |
documentType | String | True |
Document number of the company to be queried. The number must be 14 digits, without spaces, dashes, or special characters. | 09159197000180 |
import axios from 'axios';
const options = {
method: 'GET',
url: '<https://api.verifik.co/v2/br/company>',
params: {documentType: 'CNPJ', documentNumber: '09159197000180'},
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": {
"alias": "ALVO VIDEO PAPELARIA E INFORMATICA",
"city": "RIO DE JANEIRO",
"complement": "LOJA B",
"efr": "",
"email": "[email protected]",
"generalStatus": "OK",
"lastUpdate": "2024-01-13T23:59:59.000Z",
"legalNature": "206-2 - Sociedade Empresária Limitada",
"mainActivity": [
{
"code": "00.00-0-00",
"text": "********"
}
],
"name": "007 ALVO VIDEO PAPELARIA E INFORMATICA LTDA",
"neighborhood": "CAMPO GRANDE",
"number": "2096",
"openingDate": "29/10/2007",
"phone": "(21) 3395-5238 / (21) 8185-8335 / (21) 7829-8233",
"postalCode": "23.087-230",
"secondaryActivities": [
{
"code": "00.00-0-00",
"text": "Não informada"
}
],
"shareCapital": "10000.00",
"shareholders": [
{
"name": "ANA PAULA FIGUEIRA RIBEIRO",
"role": "49-Sócio-Administrador"
},
{
"name": "ANDERSON LUIZ GOMES PORTELA",
"role": "22-Sócio"
}
],
"size": "MICRO EMPRESA",
"specialStatus": "",
"specialStatusDate": "",
"state": "RJ",
"status": "INAPTA",
"statusDate": "11/03/2021",
"statusReason": "OMISSÃO DE DECLARAÇÕES",
"street": "RUA VITOR ALVES",
"taxId": "09.159.197/0001-80",
"type": "MATRIZ"
},
"signature": {
"dateTime": "March 12, 2024 3:30 PM",
"message": "Certified by Verifik.co"
},
"id": "HREL6"
}
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: [CNPJ]" | |||
} | |||
409 |
Conflict | documentNumber is not 14 characters long. | { |
"code": "MissingParameter", | |||
"message": "documentNumber maximum length: 14\n" | |||
} |