🇨🇴Vehicle Values by Plate - Fasecolda

Service to consult the Fasecolda value guide using the vehicle's license plate.

Vehicle Values by Plate - Fasecolda

GET - https://api.verifik.co/v2/co/fasecolda/values-by-plate

The Fasecolda Vehicle Value Inquiry service provides comprehensive information about vehicles registered in Colombia. By using either the vehicle's license plate number or the Fasecolda code, you can access detailed data including the vehicle's class, brand, model, year, estimated value, load capacity, fuel type, and other key attributes.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

plate

String

True

Plate to consult without spaces or periods.

ABC123

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/fasecolda/values-by-plate>',
  params: {plate: 'ABC123'},

  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": {
    "absShow": "NO",
    "airbags": "0",
    "airconditioningShow": "SI",
    "axles": "2",
    "bcpp": "64200",
    "brakes": "DISCO/TAMBOR",
    "capacityLoad": "0",
    "capacityPassengers": "5",
    "category": "LIVIANO PASAJEROS",
    "class": "AUTOMOVIL",
    "country": "COL",
    "cylinderCapacity": "1598",
    "doors": "5",
    "electricChairs": "0",
    "electricGlasses": "0",
    "electricMirrors": "0",
    "explorersShow": "NO",
    "foodSystem": "NO APLICA",
    "fuel": "GASOLINA",
    "groupUpdate": "1",
    "homoloCode": "08001151",
    "importedShow": "NO",
    "line1": "SANDERO [FL]",
    "line2": "AUTHENTIQUE",
    "line3": "MT 1600CC 8V AA",
    "long": "4057",
    "marke": "RENAULT",
    "novelty": "A",
    "observation": "",
    "plate": "ABC123",
    "power": "90",
    "rearSuspension": "NO APLICA",
    "reverseCameraShow": "NO",
    "segmentCylinder": "L",
    "segmentSize": "B",
    "sensorsShow": "NO",
    "service": "PARTICULAR",
    "sunroofShow": "NO",
    "tachometer": "NO APLICA",
    "traction": "DELANTERA",
    "transmission": "4X2",
    "typeAddress": "HIDRÁULICA",
    "typeAirConditioning": "MANUAL",
    "typeBox": "MECANICA",
    "typeHeadlights": "HALOGENO",
    "typology": "HATCHBACK",
    "upholsteryLeatherShow": "NO",
    "valueModel": [
      {
        "modelo": "2016",
        "valor": 34500,
        "estado": "USADO",
        "modeloId": 47,
        "idEstado": 1
      },
      {
        "modelo": "2015",
        "valor": 32800,
        "estado": "USADO",
        "modeloId": 46,
        "idEstado": 1
      },
      {
        "modelo": "2014",
        "valor": 31800,
        "estado": "USADO",
        "modeloId": 45,
        "idEstado": 1
      },
      {
        "modelo": "2013",
        "valor": 31100,
        "estado": "USADO",
        "modeloId": 44,
        "idEstado": 1
      }
    ],
    "weight": "1108"
  },
  "signature": {
    "dateTime": "October 12, 2023 7:38 PM",
    "message": "Certified by Verifik.co"
  },
  "id": "mhlt7"
}

Last updated