Skip to main content

SIMIT - Agreements

Endpoint​

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 comprehensive information about payment agreements including infractor details, resolution numbers, and amounts due.

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/acuerdos", {
params: {
documentType: "CC",
documentNumber: "123456789"
},
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`
},
});
console.log(data);

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": {"message": "Certified by Verifik.co", "dateTime": "March 3, 2022 12:11 PM"}
}

Notes​

  • SIMIT Agreements allow violators to pay traffic fines in installments.
  • "Acuerdo de pago" status indicates an active payment agreement.
  • permitePago: "N" means payment is not currently allowed.
  • Amounts are provided in Colombian Pesos (COP).
  • Resolution numbers are used to track specific agreements.