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
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
documentType | string | Yes | Document type. Valid values: CC, CE, PA, PPT, NIT, RC, TI. |
documentNumber | string | Yes | Document number to consult, without spaces or points. |
numeroComparendo | string | Yes | SIMIT subpoena / comparendo number. |
idOrganismoTransito | string | Yes | Transit authority identifier from SIMIT. |
Request
- Node.js
- Python
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);
import os, requests
url = "https://api.verifik.co/v2/co/simit/comparendo"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {
"documentType": "CC",
"documentNumber": "10000001",
"numeroComparendo": "2561200100010000000001",
"idOrganismoTransito": "25612100",
}
r = requests.get(url, headers=headers, params=params)
print(r.json())
Response
- 200
- 404
- 409
{
"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"
}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "\"numeroComparendo\" is required"
}
Notes
- To list all citations for a document, use
GET /v2/co/simit/comparendos(SIMIT - Fines). - Sandbox mode:
documentNumber10000001–10000010with matching comparendo/authority IDs return fixtures;90040401returns 404. - SIMIT portal availability and captcha handling are environment-dependent.