Skip to main content

哥伦比亚纪律记录(检察院 Procuraduría)

API 参考

Endpoint

https://api.verifik.co/v2/co/procuraduria/antecedentes

本服务用于核验哥伦比亚检察院(Procuraduría)登记的纪律处分记录。提交证件类型与号码后,可获取该人员的姓名信息及是否存在纪律记录。响应中将包含与其相关的处罚(sanciones)、审级(instancias)、罪名(delitos)以及失格期限(inhabilidades)等详情。

请求头(Headers)

名称取值
Content-Typeapplication/json
AuthorizationBearer <token>

参数(Parameters)

info

有关支持的证件类型及其专属必填参数的完整清单,请参阅 证件类型 指南。

名称类型必填描述
documentTypestring证件类型。允许取值:CC、PEP、CE。
documentNumberstring待查询人员的证件号码,不含空格或圆点。

请求(Request)

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/co/procuraduria/antecedentes',
params: {documentType: 'CC', documentNumber: '123456789'},
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": {
"documentType": "CC",
"documentNumber": "19592793",
"citizen": "JAIMER MARABITH PEREZ PEREZ",
"hasRecord": true,
"isRequired": false,
"legend": "Consulta en línea de Antecedentes Disiplinarios, La Procuraduria General de la Nacion certifica Que siendo las 9:46:41 PM horas del 2/8/2022 el Señor(a) JAIMER MARABITH PEREZ PEREZ identificado(a) con Cédula de ciudadanía Número 19592793 El ciudadano si presenta antecedentes.",
"antecedentes": [
{
"sanciones": [
{
"Sancion": "PRISION",
"Termino": "78 MESES",
"Clase": "PRINCIPAL",
"Suspendida": ""
},
{
"Sancion": "INHABILIDAD PARA EL EJERCICIO DE DERECHOS Y FUNCIONES PUBLICAS",
"Termino": "78 MESES",
"Clase": "ACCESORIA",
"Suspendida": ""
}
],
"instancias": [
{
"Nombre": "PRIMERA",
"Autoridad": "JUZGADO 2 PENAL DEL CIRCUITO ESPECIALIZADO DE DESCONGESTION - SANTA MARTA (MAGDALENA)",
"Fecha providencia": "30/06/2015",
"fecha efecto Juridicos": "13/06/2016"
}
],
"delitos": [
{
"Descripcion del Delito": "HOMICIDIO (LEY 599 DE 2000)"
}
],
"inhabilidades": [
{
"Módulo": "PENAL",
"Inhabilidad legal": "INHABILIDAD PARA DESEMPEÑAR CARGOS PÚBLICO LEY 734 ART 38 NUM 1",
"Fecha de inicio": "13/06/2016",
"Fecha fin": "12/06/2026"
}
]
}
]
},
"signature": {
"dateTime": "August 2, 2022 4:46 PM",
"message": "Certified by Verifik.co"
}
}