Skip to main content

公共合同

API 参考

Endpoint

https://api.verifik.co/v2/co/contracts

公共合同服务允许用户通过提交证件号码与证件类型,检索与某人或某企业相关的公共合同清单。响应中包含每份合同的关键信息,例如承包方信息、合同金额、相关机构、合同期限等。

该服务有助于提升透明度,便于追踪并监督在哥伦比亚与政府签订的公共合同。

请求头(Headers)

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

参数(Parameters)

info

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

名称类型必填描述
documentTypestring证件类型。允许取值:CC、NIT。
documentNumberstring待查询的证件号码。

请求(Request)

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/co/contracts',
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)

{
"value": {
"data": {
"contractor": [
{
"contractor": "123456789",
"contractor_name": "MATEO VERIFIK",
"count": 19
}
],
"contracts": [
{
"contractor_reference": "18486325807904513",
"contractor_id": "63535790",
"contractor": "DIANA ROCIO GARCIA PEÑARANDA",
"entity_id": "824002672",
"entity": "CESAR ESE HOSPITAL CAMILO VILLAZON PUMAREJO PUEBLO BELLO",
"url": "https://www.contratos.gov.co/consultas/detalleProceso.do?numConstancia=18-4-8632580",
"value": 1250000,
"object": "PRESTACION DE SERVICIOS PARA EL MANTENIMIENTO PREVENTIVO PLANIFICADO Y CORRECTIVO DE LOS EQUIPOS BIOMEDICOS DE LAS DISTINTAS AREAS DE LA ESE HOSPITAL CAMILO VILLAZON PUMAREJO DE PUEBLO BELLO CESAR",
"process_id": "4",
"department": "CESAR",
"contract_start_date": "2018-11-01",
"contract_end_date": "2018-11-16"
}
]
},
"signature": {
"dateTime": "May 24, 2023 4:41 PM",
"message": "Certified by Verifik.co"
}
}
}