Skip to main content

Ecuador

Endpoint

GET https://api.verifik.co/v2/ec/company

Consulta datos de empresa ecuatoriana por RUCEC (documentType + documentNumber). Devuelve campos de registro para KYB y cumplimiento.

Headers

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parámetros

NameTypeRequiredDescription
documentTypestringYesPermitido: RUCEC.
documentNumberstringYesRUCEC de 13 dígitos sin separadores.

Solicitud

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/ec/company", {
params: { documentType: "RUCEC", documentNumber: "1790008959001" },
headers: { Accept: "application/json", Authorization: `Bearer ${process.env.VERIFIK_TOKEN}` },
});
console.log(data);

Respuesta

{
"data": {
"documentType": "RUCEC",
"documentNumber": "1790008959001",
"legalName": "EMPRESA EJEMPLO SA",
"status": "ACTIVO"
},
"signature": {
"dateTime": "April 8, 2026 11:00 PM",
"message": "Certified by Verifik.co"
},
"id": "CMPY1"
}