Skip to main content

SIMIT - Resolutions

Endpoint​

https://api.verifik.co/v2/co/simit/resoluciones

The SIMIT Resolutions Service provides access to detailed information about traffic violation resolutions for a specific person or company in Colombia. This service returns data including the name of the infractor, the resolution status, the date of the resolution, and the amount owed.

Headers​

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescription
documentTypestringYesDocument type. Valid parameters: CC, PA, CE, TI, RC.
documentNumberstringYesDocument number to consult, without spaces or points.

Request​

import axios from "axios";

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

Response​

{
"data": {
"resoluciones": [
{
"estadosResoluciones": "Pendiente de pago",
"fechaComparendo": "20190503",
"fechaResolucion": "20191001",
"nombresInfractores": "PEPE SALGADO",
"NΓΊmeroComparendo": "99999999000000000936",
"resoluciones": "S709332197",
"secretarias": "Barrancabermeja",
"total": "146770.0"
}
]
},
"signature": {"message": "Certified by Verifik.co", "dateTime": "March 3, 2022 4:09 PM"}
}

Notes​

  • SIMIT Resolutions are official decisions regarding traffic violations.
  • "Pendiente de pago" status indicates the resolution is pending payment.
  • Resolution numbers are used to track specific administrative decisions.
  • Amounts are provided in Colombian Pesos (COP).