Impuestos en Bogotá
Este servicio te permite consultar información sobre impuestos de vehículos en Bogotá, Colombia.
Endpoint
GET https://api.verifik.co/v2/co/bogota/impuestos
Headers
| Name | Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer <token> |
Parámetros
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
plate | string | Sí | Placa del vehículo a consultar. | ABC123 |
Solicitud
- JavaScript
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/co/bogota/impuestos',
params: {
plate: 'ABC123'
},
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": {
"plate": "ABC123",
"taxes": {
"amount": "150000",
"status": "PAGADO",
"year": "2024"
}
},
"signature": {
"dateTime": "January 16, 2024 3:44 PM",
"message": "Certified by Verifik.co"
}
}