Police RNMC premium
Same corrective-measures result as Police RNMC. You send a Colombian citizenship card number. Verifik resolves the issue date. You do not send date.
Which lookup to useโ
| Standard RNMC | RNMC premium | |
|---|---|---|
| Endpoint | GET /v2/co/policia/rnmc | GET /v2/co/policia/rnmc/premium |
| Credits | 0.30 | 1.20 |
| Document types | CC, CE, PPT, PA | CC only |
| Expedition date | You send date (DD/MM/YYYY) | Not an input. Verifik resolves it |
| Result | Pending corrective measures | The same fields |
Use the standard lookup when you already have the expedition date, or when the document is CE, PPT, or PA. Use premium when you only have a CC number and want Verifik to resolve the issue date. Premium costs more because that extra resolution is included.
API Referenceโ
Endpointโ
https://api.verifik.co/v2/co/policia/rnmc/premium
Headersโ
| Name | Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer <token> |
Parametersโ
| Name | Type | Required | Description |
|---|---|---|---|
documentType | string | Yes | Must be CC. |
documentNumber | string | Yes | Citizenship card number, without spaces or dots. |
Do not send date. If you already have the expedition date, call the standard RNMC endpoint.
Requestโ
- JavaScript
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/co/policia/rnmc/premium',
params: {
documentType: 'CC',
documentNumber: '123456789',
},
headers: {
Accept: 'application/json',
Authorization: 'Bearer <your_token>',
},
};
const { data } = await axios.request(options);
console.log(data);
Responseโ
The data object uses the same fields as the standard RNMC lookup: documentType, documentNumber, fullName, firstName, lastName, arrayName, date, legend, records, and correctiveMeasures. date is the expedition date used for the consult, in DD/MM/YYYY.