Skip to main content

콜롬비아 — Registraduría(SCCRC) 시민 조회

Registraduría Nacional del Estado Civil (SCCRC)의 출생 민사등록(registro civil de nacimiento)을 콜롬비아 cédula(CC) 번호로 조회합니다.

문서 기반 시민 조회( /v2/co/cedula)와 달리, 이 엔드포인트는 Registraduría만 사용하며 Procuraduría, DIAN, Olimpia를 시도하지 않습니다.

반환 필드

  • documentNumber, documentType
  • firstName, lastName, fullName, arrayName
  • sexo, serial
  • oficina / expeditionPlace, fecha / dateOfBirth (가능한 경우)
  • recordTypeREGISTRO CIVIL DE NACIMIENTO
  • 서명된 Verifik 응답

API 참조

Endpoint

GET https://api.verifik.co/v2/co/cedula/registraduria

**POST**도 동일합니다. **GET**은 아래 query parameters를 사용합니다.

Headers

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters

nametyperequireddescriptionExamples
documentTypestringyes반드시 CCCC
documentNumberstringyes콜롬비아 신분증 번호1032386359

Request

import axios from "axios";

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

Response

{
"data": {
"documentType": "CC",
"documentNumber": "1032386359",
"firstName": "LILIA MANUELA",
"lastName": "LESPORT FERNANDEZ",
"fullName": "LILIA MANUELA LESPORT FERNANDEZ",
"arrayName": ["LILIA", "MANUELA", "LESPORT", "FERNANDEZ"],
"sexo": "FEMENINO",
"serial": "0043721066",
"oficina": "NOTARIA 1 VILLANUEVA - LA GUAJIRA",
"expeditionPlace": "NOTARIA 1 VILLANUEVA - LA GUAJIRA",
"fecha": "29 DE DICIEMBRE DE 2009",
"dateOfBirth": "29 DE DICIEMBRE DE 2009",
"recordType": "REGISTRO CIVIL DE NACIMIENTO"
},
"signature": {
"dateTime": "July 22, 2026 12:00 PM",
"message": "Certified by Verifik.co"
}
}

기능

  • SCCRC 문서 모드 조회 (CC만)
  • Procuraduría / DIAN / Olimpia 미사용
  • 단일 레코드 응답
  • GETPOST 동일 핸들러

참고