Skip to main content

콜롬비아 — 일련번호로 민사등록 조회 (SCCRC)

등록 문서에 인쇄된 일련번호Registraduría Nacional del Estado Civil(SCCRC)의 출생 민사등록 기록(registro civil de nacimiento)을 조회합니다.

민사등록 일련번호를 이미 알고 있을 때 문서로 시민 조회, 이름으로 조회를 보완합니다.

이 API가 반환하는 내용

  • documentNumber, documentType — 있을 때 NUIP/CC
  • firstName, lastName, fullName, arrayName
  • sexo, serial
  • 가능할 때 oficina / expeditionPlace, fecha / dateOfBirth
  • recordTypeREGISTRO CIVIL DE NACIMIENTO
  • 서명된 Verifik 응답 래퍼

API 레퍼런스

엔드포인트

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

민사등록 일련번호가 있고 연결된 신원 필드가 필요할 때 이 엔드포인트를 사용합니다. 동일한 연동은 JSON 본문의 **POST**로도 가능합니다. **GET**은 아래와 같이 쿼리 매개변수를 사용합니다.

헤더(Headers)

NameValue
Acceptapplication/json
AuthorizationBearer <token>

매개변수(Parameters)

nametyperequireddescriptionExamples
serialstringyes민사등록 일련번호(최대 10자리, 선행 0 허용)0031058170

요청(Request)

import axios from "axios";

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

응답(Response)

{
"data": {
"documentType": "CC",
"documentNumber": "10000001",
"firstName": "ALIXON DAYANA",
"lastName": "TORRES MORA",
"fullName": "ALIXON DAYANA TORRES MORA",
"arrayName": ["ALIXON", "DAYANA", "TORRES", "MORA"],
"sexo": "FEMENINO",
"serial": "0031058170",
"oficina": "NOTARIA UNICA - BOGOTA D.C.",
"expeditionPlace": "NOTARIA UNICA - BOGOTA D.C.",
"fecha": "15/03/1990",
"dateOfBirth": "15/03/1990",
"recordType": "REGISTRO CIVIL DE NACIMIENTO"
},
"signature": {
"dateTime": "July 20, 2026 12:00 PM",
"message": "Certified by Verifik.co"
}
}

기능

  • registro civil de nacimiento에 인쇄된 일련번호로 조회
  • 단일 기록 응답(matches 배열 아님)
  • GETPOST가 동일한 핸들러를 공유

사용 사례

  • 실물 registro civil 데이터 디지털화 또는 검증
  • 알려진 민사등록 일련번호로 NUIP/CC 해석
  • 문서 번호 대신 일련번호를 저장하는 감사 추적

참고(Notes)

  • **serial**은 숫자만(선행 0 패딩 허용).
  • 샌드박스 예제 일련번호: 0031058170(1000000110000010 범위의 샌드박스 문서 번호에 매핑).
  • 일시적인 소스 가용성 문제는 409(Endpoint_out_of_service)로 나타날 수 있습니다.
  • 관련: Registraduría 증명서, 이름으로 시민 조회, 결혼 등록.