The Bolivian Companies Information service provides essential details about companies registered in Bolivia. By providing the company's document type and number, such as NIT (Tax Identification Number), users can access key information including the NIT number, trade name, status (active/inactive), and the date of the last status change.
This service is valuable for verifying company details and ensuring compliance with local regulations.
Name | Type | ¿Required? | Description | Example |
---|---|---|---|---|
documentType | String | True |
Document type. Allowed value: NIT. | NIT |
documentNumber | String | True |
Document number of the company to be queried. | 5287278014 |
import axios from 'axios';
const options = {
method: 'GET',
url: '<https://api.verifik.co/v2/bo/company>',
params: {documentType: 'NIT', documentNumber: '5287278014'},
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": {
"responseCompany": {
"NIT": "5287278014",
"businessName": "JIMMY WILSON ORELLANA CALVI",
"dateLastState": "04/03/2016",
"documentNumber": "5287278014",
"documentType": "NIT",
"status": "ACTIVO"
}
},
"signature": {
"dateTime": "February 21, 2024 8:08 PM",
"message": "Certified by Verifik.co"
},
"id": "B5JNK"
}
Code | Description | Response Body | |
---|---|---|---|
404 |
Not Found | Information not found. | { |
"code": "NotFound", | |||
"message": "Record not found.", | |||
"signature": { | |||
"dateTime": "August 31, 2022 3:24 PM", | |||
"message": "Certified by Verifik.co" | |||
} | |||
} | |||
409 |
Conflict | You need to provide some parameters. | { |
"code": "MissingParameter", | |||
"message": "missing documentType\n. missing documentNumber\n" | |||
} | |||
409 |
Conflict | Invalid documentType for this query. | { |
"code": "MissingParameter", | |||
"message": "documentType must be one of: [NIT]. | |||
} | |||