Colombie — Consultation citoyen via Registraduría (SCCRC)
Recherchez un acte de naissance du registre civil (registro civil de nacimiento) de la Registraduría Nacional del Estado Civil (SCCRC) à l’aide d’un numéro de cédula (CC).
Contrairement à citoyen par document (/v2/co/cedula), cet endpoint interroge uniquement la Registraduría — il n’utilise pas Procuraduría, DIAN ni Olimpia.
Ce que renvoie cette API
documentNumber,documentTypefirstName,lastName,fullName,arrayNamesexo,serialoficina/expeditionPlace,fecha/dateOfBirthsi disponiblesrecordType—REGISTRO CIVIL DE NACIMIENTO- Réponse Verifik signée
Référence API
Endpoint
GET https://api.verifik.co/v2/co/cedula/registraduria
Disponible aussi en POST. GET utilise les paramètres de requête ci-dessous.
Headers
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parameters
| name | type | required | description | Examples |
|---|---|---|---|---|
documentType | string | yes | Doit être CC | CC |
documentNumber | string | yes | Numéro de cédula colombienne | 1032386359 |
Request
- JavaScript
- Python
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);
import os, requests
url = "https://api.verifik.co/v2/co/cedula/registraduria"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "CC", "documentNumber": "1032386359"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Response
- 200
- 404
- 409
{
"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"
}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing documentNumber"
}
Fonctionnalités
- Recherche SCCRC en mode document (CC uniquement)
- Sans Procuraduría, DIAN ni Olimpia
- Réponse à un seul enregistrement
- GET et POST partagent le même handler
Notes
documentTypedoit êtreCC.- La recherche SCCRC par document peut renvoyer 404 même si par nom trouve la personne.
- Les indisponibilités temporaires peuvent apparaître en 409 (
Endpoint_out_of_service). - Voir aussi : Citoyen par document, Par nom, Par serial.