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
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parámetros
| Name | Type | Required | Description |
|---|---|---|---|
documentType | string | Yes | Permitido: RUCEC. |
documentNumber | string | Yes | RUCEC de 13 dígitos sin separadores. |
Solicitud
- Node.js
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
- 200
{
"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"
}