🇨🇴SIMIT Resolutions

Service to consult resolutions in the SIMIT (Integrated Information System on Traffic Tickets) using the infractor's data.

SIMIT Resolutions

GET - 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. The information is regularly updated to ensure accuracy.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

documentType

String

True

Document type. Valid parameters: CC, PA, CE, TI, RC.

CC

documentNumber

String

True

Document number to consult, without spaces or points.

123456789

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/simit/resoluciones>',
  params: {documentType: 'CC', documentNumber: '123456789'},
  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

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

Last updated