Skip to main content

公共契約(Public Contracts)

API リファレンス

エンドポイント

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

公共契約サービスでは、文書番号と文書タイプを指定することで、対象者または対象企業に関連する公共契約の一覧を取得できます。レスポンスには契約者情報、契約金額、関係機関、契約期間など各契約の有用な詳細が含まれます。

本サービスは透明性を高め、コロンビアにおける国家との公共契約の監視を容易にします。

ヘッダー

名前
Content-Typeapplication/json
AuthorizationBearer <token>

パラメーター

info

対応する 文書タイプ とそれぞれの必須パラメーターの一覧については、文書タイプ ガイドをご参照ください。

名前必須説明
documentTypestringはい文書タイプ。許可される値: CC, NIT。
documentNumberstringはい照会する文書番号。

リクエスト

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);
}

レスポンス

{
"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"
}
}
}