Skip to main content

SIMIT - License suspensions

Endpoint

GET https://api.verifik.co/v2/co/simit/suspensiones

This service returns SIMIT information about suspension or cancellation of a driver license (or related sanctions tied to the queried identity), including resolution references and dates when the upstream source provides them. Use it for compliance and risk checks on Colombian motorists identified by documentType and documentNumber.

Headers

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters

NameTypeRequiredDescription
documentTypestringYesHolder document type. Typical values: CC, PA, CE, TI, RC, NIT.
documentNumberstringYesDocument number to query, without spaces or punctuation. Length limits enforced by the API may return 409 if exceeded.

Request

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/simit/suspensiones", {
params: { documentType: "CC", documentNumber: "123456789" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

Response

{
"data": {
"documentType": "CC",
"documentNumber": "123456789",
"firstName": "JUAN CARLOS",
"lastName": "PEREZ LOPEZ",
"fullName": "JUAN CARLOS PEREZ LOPEZ",
"suspensiones": [
{
"numeroResolucion": "RES-2024-000123",
"fechaSuspension": "2024/03/15",
"estado": "VIGENTE",
"motivo": "Sanción por acumulación de puntos"
}
]
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "April 8, 2026 11:00 PM"
},
"id": "IDNT1"
}

Notes

  • SIMIT (Sistema Integrado de Información de Multas y Sanciones por Infracciones de Tránsito) is Colombia’s national traffic infractions registry.
  • Field names and nested lists in data follow the upstream SIMIT payload; the sample illustrates common patterns—adjust integration code to the live response shape.
  • A 200 with an empty suspensiones array (or equivalent) may mean no suspensions were returned for that identity in the consulted window—interpret alongside business rules.
  • You may receive 409 with documentNumber maximum length exceeded if the document number is longer than allowed.