Skip to main content

SIMIT - General query by plate number

Endpoint​

https://api.verifik.co/v2/co/simit/consultar/placa

This Service allows users to obtain detailed information about traffic fines and citations associated with a specific vehicle license plate number in Colombia. The response includes comprehensive details about each citation, such as the type of infraction, the fine amount, and the current status of the citation.

Headers​

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescription
platestringYesLicense plate to be queried, without spaces or periods.

Request​

import axios from "axios";

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

Response​

{
"value": {
"value": {
"data": {
"multas": [
{
"infractor": {
"tipoDocumento": "CΓ©dula",
"numeroDocumento": "123456789",
"nombre": "C**",
"apellido": "B**",
"idTipoDocumento": 1
},
"valor": 344730,
"placa": "RDL805",
"infracciones": [
{
"codigoInfraccion": "C35",
"descripcionInfraccion": "No realizar la revisiΓ³n tΓ©cnico-mecΓ‘nica en el plazo legal establecido o cuando el vehiculo no se encuentre en adecuadas condiciones tΓ©cnico-mecΓ‘nicas o de emisiΓ³n de gases, aun cuando porte los certificados correspondientes.",
"valorInfraccion": 344730
}
],
"valorPagar": 344730,
"departamento": "Cundinamarca",
"organismoTransito": "Ricaurte",
"fechaComparendo": "23/02/2016 00:00:00",
"fechaResolucion": "12/12/2022",
"numeroComparendo": "25612001000012662173",
"estadoComparendo": "Pendiente"
}
],
"cursos": [
{
"numeroMulta": "00001234",
"fechaCurso": "21/12/2011",
"numeroCurso": "60462",
"ciudadRealizacion": "Medellin",
"centroInstruccion": "CIA AL INFRACTOR DE TRANSITO",
"estado": "No aplicado",
"certificado": "60462"
}
],
"acuerdosPago": [
{
"resolucion": "324",
"fechaResolucion": "16/02/2018",
"estado": "Acuerdo de pago",
"valorAcuerdo": 837716,
"pendiente": 837716,
"totalPagar": 837716,
"secretaria": "Jamundi",
"departamento": "Valle del Cauca"
}
],
"totalMultasPagar": 31,
"cantMultasPagar": 0,
"totalAcuerdosPagar": 11,
"cantAcuerdosPagar": 0
},
"signature": {"message": "Certified by Verifik.co", "dateTime": "August 31, 2022 4:16 PM"}
}
}
}

Notes​

  • This comprehensive service provides all SIMIT data for a vehicle including fines, courses, and payment agreements.
  • "Multas" contains traffic violation details associated with the vehicle plate.
  • "Cursos" shows traffic education courses related to the vehicle's violations.
  • "AcuerdosPago" displays payment agreements for outstanding fines.
  • Amounts are provided in Colombian Pesos (COP).