哥伦比亚 — 婚姻民事登记(SCCRC)
查询 Registraduría Nacional del Estado Civil(SCCRC)的 婚姻民事登记簿(registro civil de matrimonio)。
请提供 一种 搜索模式:
documentNumber+sexo— 证件搜索(单条记录)primerNombre+primerApellido+sexo+fecha— 姓名搜索(可能返回matches)serial— 序列号搜索(单条记录)
此 API 返回的内容
- 单条记录 或
matches数组(姓名模式) documentNumber、documentType、姓名、sexo、serial- 可用时的
oficina/expeditionPlace、fecha recordType—REGISTRO CIVIL DE MATRIMONIO- 已签名的 Verifik 响应包装
API 参考
端点
GET https://api.verifik.co/v2/co/registraduria/matrimonio
用于 婚姻登记 查询。同一集成也支持带 JSON 正文的 POST。GET 使用如下所示的查询参数。
请求头(Headers)
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
参数(Parameters)
| name | type | required | description | Examples |
|---|---|---|---|---|
documentNumber | string | conditional | NUIP/CC;需要 sexo | 10000001 |
sexo | string | conditional | 证件或姓名搜索时必填(MASCULINO / FEMENINO) | MASCULINO |
serial | string | conditional | 婚姻登记序列号 | 0042012345 |
primerNombre | string | conditional | 第一名(姓名模式) | JUAN |
primerApellido | string | conditional | 第一姓(姓名模式) | PEREZ |
fecha | string | conditional | 结婚日期 DD/MM/YYYY(姓名模式) | 20/06/2015 |
segundoNombre | string | no | 第二名 | CARLOS |
segundoApellido | string | no | 第二姓 | GOMEZ |
请求(Request)
- JavaScript
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/registraduria/matrimonio", {
params: {
documentNumber: "10000001",
sexo: "MASCULINO",
},
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);
import os, requests
url = "https://api.verifik.co/v2/co/registraduria/matrimonio"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentNumber": "10000001", "sexo": "MASCULINO"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
响应(Response)
- 200
- 404
- 409
{
"data": {
"documentType": "CC",
"documentNumber": "10000001",
"firstName": "JUAN CARLOS",
"lastName": "PEREZ GOMEZ",
"fullName": "JUAN CARLOS PEREZ GOMEZ",
"arrayName": ["JUAN", "CARLOS", "PEREZ", "GOMEZ"],
"sexo": "MASCULINO",
"serial": "0042012345",
"oficina": "NOTARIA UNICA - BOGOTA D.C.",
"fecha": "20/06/2015",
"recordType": "REGISTRO CIVIL DE MATRIMONIO"
},
"signature": {
"dateTime": "July 20, 2026 12:00 PM",
"message": "Certified by Verifik.co"
}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "Provide serial, or documentNumber+sexo, or name fields with sexo and fecha"
}
功能
- 三种搜索模式:证件、姓名 或 序列号
- 姓名模式可能返回
matches;证件/序列号返回单个对象 - GET 与 POST 共用同一处理程序
使用场景
- 为 KYC / 合规确认 婚姻登记 命中
- 解析与已知证件关联的婚姻序列号
- 仅有传记数据时的姓名筛查
说明(Notes)
- 请恰好提供一种搜索模式(不要将序列号与证件/姓名字段混用)。
- 沙箱: 证件号
10000001–10000010;姓名模式遵循与按姓名查询相同的沙箱档案。 - 来源暂时不可用时可能表现为 409(
Endpoint_out_of_service)。 - 相关:按证件查询公民、按姓名查询公民、按序列号查询民事登记、Registraduría 证明。