Skip to main content

コロンビア — Procuraduría による市民照会

コロンビアの書類番号を検証し、Procuraduría General de la Nación から氏名を抽出します。この公式ソースは Cédula de ciudadaníaCC)、Cédula de extranjeríaCE)、Permiso Especial de PermanenciaPEP)、NITPermiso por Protección TemporalPPT)をサポートします。

書類番号による市民照会/v2/co/cedula)と異なり、このエンドポイントは Procuraduría のみを呼び出し、DIAN、ADRES、Registraduría は試しません。懲戒記録/v2/co/procuraduria/antecedentes)と異なり、antecedenteslegend は返しません

この API が返すもの

  • documentNumberdocumentType
  • firstNamelastNamefullNamearrayName
  • 署名付き Verifik レスポンス

API リファレンス

Endpoint

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

Procuraduría から氏名だけが必要な場合、/cedula の他ソースが扱わない書類種別を含める場合にこのエンドポイントを使います。同じ連携は JSON 本文の POST でも利用できます。GETクエリパラメータを使います。

典型的なフィールド: documentTypedocumentNumberfirstNamelastNamefullNamearrayName。複数の政府ソースを統合する場合は /v2/co/cedula を使います。懲戒履歴が必要な場合は /v2/co/procuraduria/antecedentes を使います。

Headers

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters

nametyperequireddescriptionExamples
documentTypestringyesCCCEPPTNITPEP のいずれかCE
documentNumberstringyes書類番号(数字のみ)688925

Request

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/procuraduria", {
params: {
documentType: "CE",
documentNumber: "688925",
},
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

Response

{
"data": {
"documentType": "CE",
"documentNumber": "688925",
"firstName": "JUAN SEBASTIAN",
"lastName": "RAIGOSA GALLEGO",
"fullName": "JUAN SEBASTIAN RAIGOSA GALLEGO",
"arrayName": ["JUAN", "SEBASTIAN", "RAIGOSA", "GALLEGO"]
},
"signature": {
"dateTime": "August 25, 2026 12:00 PM",
"message": "Certified by Verifik.co"
}
}

機能

  • Procuraduría の氏名直接照会
  • CCCEPPTNITPEP をサポート
  • 懲戒記録なし(antecedenteslegend
  • GETPOST は同じハンドラ

ユースケース

  • 登録名だけが必要な外国人証(CE)または NIT の検証
  • 複数ソースの /cedula 統合から Procuraduría だけを切り出す
  • 懲戒記録を別請求したくない場合の専用プロダクト

Notes

  • 氏名抽出のみ — レスポンスに antecedenteslegend含まれません
  • 懲戒記録は コロンビア懲戒記録 を使ってください。
  • /v2/co/cedula は同じ書類種別について Procuraduría とその他ソースを引き続き統合します。
  • サンドボックス予約番号 90040401404 を返します。
  • 関連: 書類番号による市民照会