🇧🇴Bolivia

Service to query Bolivian companies using the NIT (Tax Identification Number).

Bolivian Companies Information

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

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.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Body

NameTypeRequired?DescriptionExample

documentType

String

True

Document type. Allowed value: NIT.

NIT

documentNumber

String

True

Document number of the company to be queried.

5287278014

Request

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

Response

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

Last updated