🇨🇴SIMIT Agreements

Service to check agreements in the SIMIT using the offender's data.

SIMIT Agreements

GET - https://api.verifik.co/v2/co/simit/acuerdos

The SIMIT Agreements Service provides an efficient method for retrieving payment agreements related to traffic violations in Colombia's SIMIT system. By querying the service with relevant details, users can obtain a response containing comprehensive information about the agreement.

The response includes details such as the infractor's name, the resolution number, the issuing secretariat, and the total amount due.

This service is particularly useful for developers and organizations that need to automate the retrieval and integration of traffic violation payment agreements into their systems and applications.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Body

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/acuerdos>',
  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": {
    "acuerdosPagos": [
      {
        "estadosResoluciones": "Acuerdo de pago",
        "fechaComparendo": "1900/01/01",
        "fechaResolucion": "2018/07/05",
        "noComparendo": "NO REPORTADO",
        "nombresInfractores": "PEPE SALGADO",
        "permitePago": "N",
        "resoluciones": "0003030",
        "secretarias": "Barrancabermeja",
        "total": "558864.0"
      }
    ],
    "signature": {
      "dateTime": "March 3, 2022 12:11 PM",
      "message": "Certified by Verifik.co"
    }
  }
}

Last updated