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β
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parametersβ
| Name | Type | Required | Description |
|---|---|---|---|
documentType | string | Yes | Document type. Valid parameters: CC, PA, CE, TI, RC. |
documentNumber | string | Yes | Document number to consult, without spaces or points. |
Requestβ
- Node.js
- Python
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);
import os, requests
url = "https://api.verifik.co/v2/co/simit/acuerdos"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "CC", "documentNumber": "123456789"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Responseβ
- 200
- 404
- 409
{
"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"}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing documentType. missing documentNumber"
}
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.