🇨🇴Vehicle Information by VIN

Service to consult the complete history of a vehicle using the VIN (Vehicle Identification Number).

Vehicle Information by VIN

GET - https://api.verifik.co/v2/co/runt/vehicle-by-vin

The Vehicle Information service allows you to retrieve detailed information about a vehicle registered in Colombia using its VIN (Vehicle Identification Number). This service provides comprehensive data including the vehicle's state, service type, class, make, model, color, and technical specifications such as weight and seating capacity. It also includes details on the vehicle's insurance policies and inspection records.

To use this service, simply provide the VIN of the vehicle as a parameter, and you will receive a JSON response with the vehicle's complete details.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

vin

String

True

Vin of the vehicle that you want to check data.

3MVDM2WLAML234946

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/runt/vehicle-by-vin>',
  params: {vin: '3MVDM2WLAML234946'},
  headers: {
    Accept: 'application/json',
    Authorization: 'jwt <tu_token>'
  }
};

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

Response

{
    "data": {
        "informacionGeneral": {
            "serialVersionUID": 2792365148123446000,
            "noLicenciaTransito": "10021312347",
            "tieneLTImportacion": false,
            "estadoDelVehiculo": "ACTIVO",
            "tipoServicio": "Particular",
            "claseVehiculo": "CAMIONETA",
            "marca": "MAZDA",
            "linea": "CX-30",
            "modelo": "2021",
            "color": "MACHINE GRAY",
            "noMotor": "PY402912330",
            "noChasis": "3MVDM2WLAML234946",
            "noVin": "3MVDM2WLAML234946",
            "cilidraje": "2488",
            "tipoCarroceria": "WAGON",
            "fechaMatricula": "17/10/2020",
            "tieneGravamenes": "NO",
            "organismoTransito": "SECRETARIA DISTRITAL DE MOVILIDAD DE BOGOTA ",
            "prendas": "NO",
            "clasificacion": "AUTOMOVIL",
            "esRegrabadoMotor": "NO",
            "esRegrabadoChasis": "NO",
            "esRegrabadoSerie": "NO",
            "esRegrabadoVin": "NO",
            "clasicoAntiguo": "NO",
            "tipoCombustible": "GASOLINA",
            "tarjetaServicio": "NO",
            "mostrarSolicitudes": "SI",
            "seguridadEstado": "NO",
            "verValidaDIAN": true,
            "validacionDIAN": "Exitoso",
            "noPlaca": "ABC123",
            "repotenciado": "NO",
            "puertas": "5"
        },
        "datosTecnicos": {
            "serialVersionUID": 2792365148123428000,
            "pesoBrutoVehicular": "1939",
            "noEjes": "2",
            "pasajerosSentados": "5"
        },
        "tarjetaOperacion": {},
        "soat": [
            {
                "serialVersionUID": 2792362345681728000,
                "noPoliza": "355100023467200",
                "fechaExpedicion": "03/10/2023",
                "fechaVigencia": "17/10/2023",
                "fechaVencimiento": "16/10/2024",
                "entidadExpideSoat": "SEGUROS COMERCIALES BOLIVAR S.A",
                "estado": "VIGENTE",
                "tipoTarifa": "221"
            },
            {
                "serialVersionUID": 2792323458681728000,
                "noPoliza": "84273457",
                "fechaExpedicion": "04/11/2022",
                "fechaVigencia": "05/11/2022",
                "fechaVencimiento": "04/11/2023",
                "entidadExpideSoat": "COMPANIA MUNDIAL DE SEGUR",
                "estado": "NO VIGENTE",
                "tipoTarifa": "221"
            },
            {
                "serialVersionUID": 279236534581728000,
                "noPoliza": "355100034500100",
                "fechaExpedicion": "19/09/2021",
                "fechaVigencia": "17/10/2021",
                "fechaVencimiento": "16/10/2022",
                "entidadExpideSoat": "SEGUROS COMERCIALES BOLIVAR S.A",
                "estado": "NO VIGENTE",
                "tipoTarifa": "221"
            },
            {
                "serialVersionUID": 2792365148347528000,
                "noPoliza": "25494670",
                "fechaExpedicion": "16/10/2020",
                "fechaVigencia": "17/10/2020",
                "fechaVencimiento": "16/10/2021",
                "entidadExpideSoat": "SEGUROS GENERALES SURAMERICANA S.A.",
                "estado": "NO VIGENTE",
                "tipoTarifa": "221"
            }
        ],
        "polizasResponsabilidadCivil": [],
        "tecnoMecanica": [
            {
                "serialVersionUID": 2792365148354628000,
                "vigente": "NO APLICA"
            }
        ],
        "garantiasFavorDe": [],
        "garantiasMobiliarias": [],
        "solicitudes": [
            {
                "serialVersionUID": 279236514868346400,
                "noSolicitud": "124539870",
                "fechaSolicitud": "17/10/2020",
                "estado": "AUTORIZADA",
                "tramitesRealizados": "Tramite matricula inicial, ",
                "entidad": "SECRETARIA DISTRITAL DE MOVILIDAD DE BOGOTA "
            }
        ],
        "normalizacionSaneamiento": [
            {
                "deficienciaMatriculaInicial": "NO",
                "vehiculoNormalizado": "NO DISPONIBLE"
            }
        ],
        "limitacionPropiedad": [],
        "InformacionBlindaje": {
            "serialVersionUID": 2792365124321728000,
            "blindado": "NO"
        }
    },
    "signature": {
        "dateTime": "March 14, 2024 2:23 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "DWTV2"
}

Last updated