Skip to main content

SIMIT - Subpoena Details

Endpoint

https://api.verifik.co/v2/co/simit/comparendo

The SIMIT Subpoena Details service returns detailed information for one traffic citation (comparendo) when you provide the document, subpoena number, and transit authority ID. It complements the list endpoint SIMIT - Fines (GET /v2/co/simit/comparendos), which returns all citations for a person.

Use it for fine verification, dispute review, and fleet compliance workflows.

Headers

NameValue
Acceptapplication/json
AuthorizationBearer <token>

Parameters

NameTypeRequiredDescription
documentTypestringYesDocument type. Valid values: CC, CE, PA, PPT, NIT, RC, TI.
documentNumberstringYesDocument number to consult, without spaces or points.
numeroComparendostringYesSIMIT subpoena / comparendo number.
idOrganismoTransitostringYesTransit authority identifier from SIMIT.

Request

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/simit/comparendo", {
params: {
documentType: "CC",
documentNumber: "10000001",
numeroComparendo: "2561200100010000000001",
idOrganismoTransito: "25612100",
},
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

Response

{
"data": {
"numeroComparendo": "2561200100010000000001",
"idOrganismoTransito": "25612100",
"documentType": "CC",
"documentNumber": "10000001",
"direccionComparendo": "CARRERA 43A CON CALLE 10 EL POBLADO",
"infractorComparendo": "ANDRES ACOSTA",
"tipoVehiculo": "AUTOMOVIL",
"servicioVehiculo": "Particular"
},
"signature": {
"dateTime": "January 16, 2024 3:44 PM",
"message": "Certified by Verifik.co"
}
}

Notes

  • To list all citations for a document, use GET /v2/co/simit/comparendos (SIMIT - Fines).
  • Sandbox mode: documentNumber 1000000110000010 with matching comparendo/authority IDs return fixtures; 90040401 returns 404.
  • SIMIT portal availability and captcha handling are environment-dependent.