Costa Rica
Endpoint
https://api.verifik.co/v2/cr/company
Recuperar datos de empresa costarricense por identificador.
Headers
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parámetros
| Name | Type | Required | Description |
|---|---|---|---|
documentType | string | Yes | Tipo de documento. Parámetro permitido: NITE. |
documentNumber | string | Yes | Identificador de empresa. |
Solicitud
- Node.js
- PHP
- Python
- Go
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/cr/company", {
params: { documentType: "NITE", documentNumber: "3101122876" },
headers: { Accept: "application/json", Authorization: `Bearer ${process.env.VERIFIK_TOKEN}` },
});
console.log(data);
<?php
$ch = curl_init("https://api.verifik.co/v2/cr/company");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Accept: application/json",
"Authorization: Bearer " . getenv("VERIFIK_TOKEN")
]);
$query = http_build_query([
"documentType" => "NITE",
"documentNumber" => "3101122876"
]);
curl_setopt($ch, CURLOPT_URL, "https://api.verifik.co/v2/cr/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/cr/company"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "NITE", "documentNumber": "3101122876"}
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/cr/company?documentType=NITE&documentNumber=3101122876"
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
- 409
- 401
- 500
{
"data": {
"businessName": "ENLACES CASUALES COSTA RICA SOCIEDAD ANONIMA",
"documentNumber": "3101122876",
"documentType": "NITE"
},
"signature": {
"dateTime": "October 10, 2025 5:18 PM",
"message": "Certified by Verifik.co"
},
"id": "U6IYC"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "documentType must be one of: [NITE]"
}
{
"code": "MissingParameter",
"message": "missing documentNumber\n"
}
{
"code": "MissingParameter",
"message": "missing documentType\n"
}
{
"message": "Authentication required",
"code": "UNAUTHORIZED"
}
{
"code": "InternalServerError",
"message": "Server error."
}
Notas
- Contacta al soporte para campos completos del dataset.