Skip to main content

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 RNMCRNMC premium
EndpointGET /v2/co/policia/rnmcGET /v2/co/policia/rnmc/premium
Credits0.301.20
Document typesCC, CE, PPT, PACC only
Expedition dateYou send date (DD/MM/YYYY)Not an input. Verifik resolves it
ResultPending corrective measuresThe 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โ€‹

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parametersโ€‹

NameTypeRequiredDescription
documentTypestringYesMust be CC.
documentNumberstringYesCitizenship card number, without spaces or dots.

Do not send date. If you already have the expedition date, call the standard RNMC endpoint.

Requestโ€‹

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.