🇨🇴 Colômbia — CE (Cédula de Extranjería)
Endpoint
GET https://api.verifik.co/v2/co/foreigner-id/ce
Envie documentNumber e expeditionDate (DD/MM/YYYY) na query. O mesmo payload em POST (JSON).
Cabeçalhos
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parâmetros
| name | type | required | description |
|---|---|---|---|
documentNumber | string | yes | Número CE sem espaços ou pontuação. |
expeditionDate | string | yes | Data de expedição DD/MM/AAAA. |
Requisição
- Node.js
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/foreigner-id/ce", {
params: { documentNumber: "987654321", expeditionDate: "15/06/2020" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);
import os, requests
url = "https://api.verifik.co/v2/co/foreigner-id/ce"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentNumber": "987654321", "expeditionDate": "15/06/2020"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Resposta
- 200
- 404
- 409
{
"data": {
"documentType": "CE",
"documentNumber": "987654321",
"status": "VIGENTE",
"fullName": "MARIA EJEMPLO PEREZ"
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "April 20, 2026 10:00 AM"
},
"id": "CE01A"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "expeditionDate must be a valid date in DD/MM/YYYY format"
}
Notas
- Data em
DD/MM/YYYY. GETePOSTusam o mesmo fluxo.