🇨🇴General query of SIMIT by license plate

Service to check agreements, suspensions, resolutions, and fines in the SIMIT using the vehicle's license plate.

General query of SIMIT by license plate

GET - 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.

This service is valuable for individuals and organizations that need to manage or review traffic violations for vehicles, offering insights into the nature and financial impact of the citations.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

plate

String

True

License plate to be queried, without spaces or periods.

ABC123

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/simit/consultar/placa>',
  params: {plate: 'ABC123'},
  headers: {
    Accept: 'application/json',
    Authorization: 'jwt <tu_token>'
  }
};

try {
 notFou const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

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
              }
            ],
            "proyeccion": [],
            "comparendo": true,
            "impreso": false,
            "valorPagar": 344730,
            "porcentajeDescuentoIntereses": 0,
            "porcentajeDescuentoCapital": 0,
            "idDepartamento": 25,
            "departamento": "Cundinamarca",
            "referenciaPago": "string",
            "estadoPago": "string",
            "idResolucion": 1234567,
            "numeroResolucion": "string",
            "organismoTransito": "Ricaurte",
            "idOrganismoTransito": "25612000",
            "estadoCartera": "string",
            "idEstadoCartera": 1324546,
            "comparendosElectronicos": "string",
            "polca": "N",
            "valorIntereses": 0,
            "idTipoResolucion": 0,
            "valorDescuentoIntereses": 0,
            "valorDescuentoCapital": 0,
            "valorGestion": 0,
            "liquidacionCoactivoParam18": false,
            "liquidarIncumpApParam135": false,
            "fechaComparendo": "23/02/2016 00:00:00",
            "fechaResolucion": "12/12/2022",
            "cisa": "string",
            "numeroComparendo": "25612001000012662173",
            "nroCoactivo": "string",
            "fechaCoactivo": "string",
            "fechaHasta": "string",
            "consecutivoComparendo": "34944598",
            "estadoComparendo": "Pendiente",
            "comparendoElectronico": false,
            "poseeCurso": "N",
            "idEstadoComparendo": 1,
            "valorDescuentoProntoPago": "0",
            "fechaNotificacion": "12/12/2022",
            "renuencia": false,
            "contieneInfraccionesEmbriaguez": false,
            "contieneInfraccionesHG": false,
            "tutor": "NA"
          }
        ],
        "cursos": [
          {
            "numeroMulta": "00001234",
            "fechaCurso": "21/12/2011",
            "numeroCurso": "60462",
            "ciudadRealizacion": "Medellin",
            "centroInstruccion": "CIA AL INFRACTOR DE TRANSITO",
            "fechaReporte": "",
            "estado": "No aplicado",
            "certificado": "60462",
            "secretaria": "05001000"
          }
        ],
        "acuerdosPago": [
          {
            "idResolucion": 82908689,
            "resolucion": "324",
            "fechaResolucion": "16/02/2018",
            "idEstado": 2,
            "estado": "Acuerdo de pago",
            "valorAcuerdo": 837716,
            "valorGestion": 0,
            "pendiente": 837716,
            "totalCuotasSelect": 0,
            "totalPagar": 837716,
            "totalDescuentoCapital": 0,
            "totalAbonado": 0,
            "cuotasPendientes": [],
            "planPagos": [],
            "cantTotalCuotasPlanPago": 7,
            "liquidacionApParam16": false,
            "impreso": false,
            "seleccionado": false,
            "cantCuotasAbonadas": 7,
            "totalIntereses": 0,
            "idTipoResolucion": 8,
            "infractor": {
              "tipoDocumento": "Cédula",
              "numeroDocumento": "123456789",
              "nombre": "PE** ",
              "apellido": "SAL**** PE*** ",
              "idTipoDocumento": 1
            },
            "idOrganismoTransito": "76364000",
            "polca": "S",
            "consecutivoCartera": "48150947",
            "secretaria": "Jamundi",
            "cantCuotasPendientes": 0,
            "idDepartamento": 76,
            "departamento": "Valle del Cauca",
            "referenciaPago": null,
            "estadoPago": null,
            "descuentoCapitalCuota": false
          }
        ],
        "totalMultasPagar": 31,
        "cantMultasPagar": 0,
        "totalAcuerdosPagar": 11,
        "cantAcuerdosPagar": 0
      },
      "signature": {
        "dateTime": "August 31, 2022 4:16 PM",
        "message": "Certified by Verifik.co"
      }
    }
  }
}

Last updated