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
| Name | Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer <token> |
Parámetros
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
codeFasecolda | string | Sí | Código Fasecolda del vehículo. | 12345 |
Solicitud
- JavaScript
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
- 200
{
"data": {
"codeFasecolda": "12345",
"value": "50000000",
"brand": "TOYOTA",
"model": "COROLLA",
"year": "2023"
},
"signature": {
"dateTime": "January 16, 2024 3:44 PM",
"message": "Certified by Verifik.co"
}
}