Skip to main content

RUNT — Véhicule (enregistrement de base)

Endpoint

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

Retourne les informations véhicule auprès du RUNT pour la plaque et le titulaire (documentType + documentNumber). Réponse orientée immatriculation et données de base ; le rapport complet est sur /v2/co/runt/vehicle-by-plate. Paramètre optionnel audit (booléen en chaîne).

En-têtes

NomValeur
Acceptapplication/json
AuthorizationBearer <token>

Paramètres

NomTypeObligatoireDescription
documentTypestringOuiType de pièce du titulaire : CC, CE, PA, NIT.
documentNumberstringOuiNuméro sans espaces ni ponctuation.
platestringOuiPlaque (5–9 caractères selon validation API).

Requête

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/runt/vehiculo", {
params: {
documentType: "CC",
documentNumber: "123456789",
plate: "ABC123",
},
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

Réponse

{
"data": {
"documentNumber": "31527228",
"documentType": "CC",
"plate": "WHH662",
"vehicle": {
"marca": "MAZDA",
"linea": "T 45",
"modelo": "1999",
"noPlaca": "WHH662",
"estadoDelVehiculo": "ACTIVO",
"tipoServicio": "Público",
"organismoTransito": "STRIA DE TTOyTTE MEDELLIN"
}
},
"signature": {
"dateTime": "October 10, 2025 8:10 PM",
"message": "Certified by Verifik.co"
},
"id": "GVMFW"
}

Notes

  • Rapport complet : GET /v2/co/runt/vehicle-by-plate.
  • Version allégée : GET /v2/co/runt/vehicle-by-plate-simplified.