Skip to main content

Chile - Civil Registry Certificate Verification

API Reference​

Endpoint​

GET https://api.verifik.co/v2/cl/certificate/verify

Verify a Chile Registro Civil (SRCEI) certificate using the folio and verification code (CΓ³digo Verificador) printed on the document. Returns structured identity fields, conviction-register details, and the certificate PDF as base64 when the verification succeeds.

Headers​

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescription
foliostringYesCertificate folio (10–15 characters). Example: 50070080804.
verificationCodestringYesVerification code from the certificate. Example: 2aacbb9a636a.

Request​

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/cl/certificate/verify',
params: {
folio: '50070080804',
verificationCode: '2aacbb9a636a',
},
headers: {
Accept: 'application/json',
Authorization: 'Bearer <your_token>',
},
};

try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}

Response​

{
"data": {
"response": "Certificado verificado correctamente",
"urlPDF": "https://www.registrocivil.cl/OficinaInternet/verificacion/sandbox-50070080804.pdf",
"pdfBase64": "JVBERi0xLjMKJeLjz9MKMSAwIG9iago8PC9UeXBlL0NhdGFsb2cv...",
"verificationCode": "2aacbb9a636a",
"folio": "50070080804",
"details": {
"name": "JUAN CARLOS PEREZ GONZALEZ",
"run": "12.345.678-9",
"dateOfBirth": "15/08/1985",
"registers": [
{
"register": "Registro General de Condenas",
"run": "12.345.678-9",
"fines": "No registra anotaciones"
},
{
"register": "Registro Especial de Condenas por Actos de Violencia Intrafamiliar",
"run": "12.345.678-9",
"fines": "No registra anotaciones"
}
]
}
},
"signature": {
"dateTime": "June 23, 2026 10:00 AM",
"message": "Certified by Verifik.co"
}
}

Notes​

  • folio must be between 10 and 15 characters.
  • Upstream timeouts from the Registro Civil source may return 409 timeout_data_source.
  • In sandbox mode, use folio=50070080804 and verificationCode=2aacbb9a636a for a stable sample response; folio=9004040100001 returns 404.