Bolivia
Endpoint
https://api.verifik.co/v2/bo/company
Recuperar datos de empresa boliviana por identificador tributario.
Headers
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parámetros
| Name | Type | Required | Description |
|---|---|---|---|
documentNumber | string | Yes | Company identifier. |
documentType | string | Yes | Allowed: NIT. |
Solicitud
- Node.js
- PHP
- Python
- Go
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/bo/company", {
params = {"documentNumber": "1234567","documentType" => "NIT"}
headers: { Accept: "application/json", Authorization: `Bearer ${process.env.VERIFIK_TOKEN}` },
});
console.log(data);
<?php
$ch = curl_init("https://api.verifik.co/v2/bo/company");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Accept: application/json",
"Authorization: Bearer " . getenv("VERIFIK_TOKEN")
]);
$query = http_build_query([
"documentNumber" => "1234567"
"documentType" => "NIT"
]);
curl_setopt($ch, CURLOPT_URL, "https://api.verifik.co/v2/bo/company?".$query);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
import os, requests
url = "https://api.verifik.co/v2/bo/company"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentNumber": "1234567","documentType" => "NIT"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
package main
import (
"fmt"
"net/http"
)
func main() {
url := "https://api.verifik.co/v2/bo/company?documentNumber=1234567"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Set("Accept", "application/json")
req.Header.Set("Authorization", "Bearer "+getenv("VERIFIK_TOKEN"))
resp, _ := http.DefaultClient.Do(req)
defer resp.Body.Close()
fmt.Println(resp.Status)
}
Respuesta
- 200
- 404
- 401
- 500
{
"data": {
"businessName": "INETYF AUTOMATIZACION",
"dateLastState": "",
"documentNumber": "5287278014",
"documentType": "NIT",
"status": "ACTIVO"
},
"signature": {
"dateTime": "October 10, 2025 10:47 AM",
"message": "Certified by Verifik.co"
},
"id": "80NJ4"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"message": "Authentication required",
"code": "UNAUTHORIZED"
}
{
"code": "InternalServerError",
"message": "Server error."
}
Notas
- Contacta al soporte para campos completos del dataset.