Colombia β PEP (Special Stay Permit)
Verifik validates PEP (Permiso Especial de Permanencia) records published by MigraciΓ³n Colombia for KYC, eligibility, and compliance workflows.
What this API returnsβ
- Status (e.g. VIGENTE / VENCIDO) and key dates, including expedition and expiration where provided
- Structured name fields, PEP document metadata, and Venezuelan identification when returned by the source
- Responses are signed and may be cached
API referenceβ
Endpointβ
GET https://api.verifik.co/v2/co/foreigner-id/pep
The same integration is available as POST with a JSON body containing the same fields. GET uses query parameters as shown below.
Headersβ
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parametersβ
| name | type | required | description |
|---|---|---|---|
documentNumber | string | yes | PEP number without spaces or punctuation. |
expeditionDate | string | yes | Issue date in DD/MM/YYYY format (e.g. 10/10/2024). |
Requestβ
- JavaScript
- Python
import axios from "axios";
const { data } = await axios.get("https://api.verifik.co/v2/co/foreigner-id/pep", {
params: {
documentNumber: "123456789",
expeditionDate: "10/10/2024",
},
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/pep"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentNumber": "123456789", "expeditionDate": "10/10/2024"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Responseβ
- 200
- 404
- 409
{
"data": {
"arrayName": ["MATEO", "VERIFIK"],
"documentNumber": "123456789012345",
"documentType": "PEP",
"expirationDate": "08/08/2018",
"firstName": "MATEO",
"fullName": "MATEO VERIFIK",
"identification": "17609583",
"lastName": "VERIFIK",
"status": "VENCIDO"
},
"signature": {
"dateTime": "August 22, 2023 8:02 PM",
"message": "Certified by Verifik.co"
},
"id": "tnlkb"
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "expeditionDate must be a valid date in DD/MM/YYYY format"
}
Featuresβ
- Official PEP lookup against MigraciΓ³n Colombiaβs public consultation flow
- Validity and lifecycle fields when returned by the source
Use casesβ
- Employment, banking, and services for Venezuelan nationals with PEP in Colombia
- Humanitarian and social programs that require proof of stay status
Notesβ
expeditionDatemust matchDD/MM/YYYY; wrong formats typically return 409.GETandPOSTare both routed to the same handler; usePOSTif you prefer a JSON body.- Upstream portal or parsing changes may surface 404 / 500 when no row is found or the source is unavailable.