Skip to main content

Valores de Vehículos por Código

Este servicio te permite obtener valores e información de vehículos Fasecolda por código en Colombia.

Endpoint

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

Headers

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parámetros

NameTypeRequiredDescriptionExample
codeFasecoldastringCódigo Fasecolda del vehículo.12345

Solicitud

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/co/fasecolda/values-by-code',
params: {
codeFasecolda: '12345'
},
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer <tu_token>'
}
};

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

Respuesta

{
"data": {
"codeFasecolda": "12345",
"value": "50000000",
"brand": "TOYOTA",
"model": "COROLLA",
"year": "2023"
},
"signature": {
"dateTime": "January 16, 2024 3:44 PM",
"message": "Certified by Verifik.co"
}
}