Skip to main content

Validation SOAT et RTM au RUNT

Verifik's SOAT and RTM Validation API provides real-time access to the status of mandatory documents for vehicles registered in Colombia: the Mandatory Traffic Accident Insurance (SOAT) and the Mechanical Technical Review (RTM).

This service is critical for ensuring that vehicles comply with Colombian traffic regulations, helping to prevent fines and legal issues.

Que renvoie l'API ?

When a query is made using the license plate and owner's document, the API returns:

  • SOAT Status: Validity, policy number, insurer, issuance and expiration dates.
  • RTM Status: Validity, certificate number, diagnostic center, issuance and expiration dates.
  • Vehicle Details: Make, line, model, color, and registration status.
  • Owner Verification: Confirmation of the document number associated with the vehicle.

Référence API

Point d'accès

https://api.verifik.co/v2/co/runt/vehiculo

En-têtes

NomValeur
Content-Typeapplication/json
AuthorizationBearer <token>

Paramètres

NomTypeRequisDescription
documentTypestringOuiType de document. Valeurs autorisées are: CC, CE, PA, RC, NIT.
documentNumberstringOuiNuméro de document du propriétaire du véhicule, sans espaces ni points.
platestringOuiPlaque du véhicule à consulter.

Requête

import axios from "axios";

const options = {
method: "GET",
url: "https://api.verifik.co/v2/co/runt/vehiculo",
params: { documentType: "CC", documentNumber: "123456789", plate: "ABC123" },
headers: {
Accept: "application/json",
Authorization: "Bearer <votre_token>",
},
};

try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}

Réponse

{
"data": {
"documentType": "CC",
"documentNumber": "123456789",
"plate": "XXXXX",
"vehicleInformation": {
"color": "PLATEADO",
"brand": "CHERY",
"line": "QQ3 SQR7080 S116",
"status": "ACTIVO",
"enrollmentDate": "07/10/2010",
"plate": "XXXXX"
},
"soat": {
"valid": true,
"expeditionDate": "10/09/2021",
"dueDate": "11/09/2022",
"coverageStartDate": "12/09/2021",
"soatNumber": "XXXXXX"
},
"techReview": {
"valid": true,
"reviewNumber": "XXXXX",
"expeditionDate": "12/09/2021",
"dueDate": "12/09/2022",
"requireTechReview": true
},
"consultationDateTime": "2022-03-03T17:10:00.568Z"
},
"signature": {
"dateTime": "March 3, 2022 12:10 PM",
"message": "Certified by Verifik.co"
}
}

Cas d'usage

The RUNT SOAT and RTM query API is widely used for:

  • Insurance Companies: To verify current coverage before issuing new policies or processing claims.
  • Fleet Management: To automatically monitor expiration dates and schedule renewals.
  • Ride-Hailing Apps: To ensure that drivers' vehicles are legally compliant to operate.
  • Traffic Authorities: To automate compliance checks and enforcement.

Conformité et qualité des données

Compliance, availability, and accuracy

The API connects directly to official sources such as RUNT, ensuring:

  • Verified and up-to-date information.
  • High availability and optimal response times.
  • Regulatory compliance with traffic laws.

Additional technical information

  • Method: GET
  • Response format: JSON
  • Update frequency: Real-time
  • Official source: RUNT Colombia
  • Coverage: Nationwide

À propos de Verifik

Verifik is an identity verification and compliance platform that connects companies with official data sources across Latin America.