哥伦比亚 — 按序列号查询民事登记(SCCRC)
使用登记文件上印制的 序列号,从 Registraduría Nacional del Estado Civil(SCCRC)定位 出生民事登记 记录(registro civil de nacimiento)。
在已掌握民事登记序列号时,可补充按证件查询公民与按姓名查询。
此 API 返回的内容
documentNumber、documentType— 存在时的 NUIP/CCfirstName、lastName、fullName、arrayNamesexo、serial- 可用时的
oficina/expeditionPlace、fecha/dateOfBirth recordType—REGISTRO CIVIL DE NACIMIENTO- 已签名的 Verifik 响应包装
API 参考
端点
GET https://api.verifik.co/v2/co/registraduria/serial
当您拥有 民事登记序列号 并需要关联身份字段时使用此端点。同一集成也支持带 JSON 正文的 POST。GET 使用如下所示的查询参数。
请求头(Headers)
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
参数(Parameters)
| name | type | required | description | Examples |
|---|---|---|---|---|
serial | string | yes | 民事登记序列号(最多 10 位数字;允许前导零) | 0031058170 |
请求(Request)
- JavaScript
- Python
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);
import os, requests
url = "https://api.verifik.co/v2/co/registraduria/serial"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"serial": "0031058170"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
响应(Response)
- 200
- 404
- 409
{
"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"
}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing serial"
}
功能
- 按 registro civil de nacimiento 上印制的 序列号 查询
- 单条记录响应(非
matches数组) - GET 与 POST 共用同一处理程序
使用场景
- 数字化或核验实体 registro civil 上的数据
- 根据已知民事登记序列号解析 NUIP/CC
- 审计轨迹存储序列号而非证件号
说明(Notes)
serial仅为数字(接受前导零填充)。- 沙箱示例序列号:
0031058170(映射到沙箱证件号10000001–10000010范围)。 - 来源暂时不可用时可能表现为 409(
Endpoint_out_of_service)。 - 相关:Registraduría 证明、按姓名查询公民、婚姻登记。