🇨🇴Impuestos en Bogotá

Servicio para consultar si un vehículo tiene alguna deuda con la Secretaría de Movilidad de Bogotá.

Impuestos en Bogotá

GET - https://api.verifik.co/v2/co/bogota/vehicle/tax

Este servicio proporciona información sobre las obligaciones tributarias de un vehículo registrado en Bogotá. Para acceder a los detalles, debes proporcionar el tipo y número de documento del propietario, junto con la placa del vehículo. La respuesta incluye información como la marca, el modelo y el año del vehículo, así como el estado de las obligaciones tributarias correspondientes a años fiscales específicos. Si el estado es Moroso, indica que existen impuestos pendientes de pago.

Implementación

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Name
Type
Required?
Description
Example

plate

String

True

Plate to consult, without spaces or points.

ABC123

documentNumber

String

True

Document number to consult, without space or points.

123456789

documentType

String

True

Document type. Allowed parameters: CC, NIT.

CC

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/co/bogota/vehicle/tax>',
  params: {plate: 'ABC123', documentType:'CC', documentNumber:'123456789'},
  headers: {
    Accept: 'application/json',
    Authorization: 'jwt <tu_token>'
  }
};

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

Response

{
    "data": {
        "details": "",
        "documentNumber": "123456789",
        "documentType": "CC",
        "obligation": {
            "vehicle": [
                {
                    "brand": "MAZDA",
                    "form": "2020003010100010240",
                    "linea": "050365",
                    "model": "2021",
                    "obligation": "1.080.000",
                    "obligationStatus": "Moroso",
                    "plate": "ABC123",
                    "reference": "0000020034588543",
                    "taxableYear": "2020",
                    "totalToPay": "1.080.000"
                },
                {
                    "brand": "MAZDA",
                    "form": "2021203041643246796",
                    "linea": "050365",
                    "model": "2021",
                    "obligation": "3.459.000",
                    "obligationStatus": "Moroso",
                    "plate": "JMU866",
                    "reference": "0000021037595180",
                    "taxableYear": "2021",
                    "totalToPay": "3.459.000"
                }
            ]
        },
        "plate": "JMU866"
    },
    "signature": {
        "dateTime": "July 3, 2024 3:59 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "5P20N"
}

Last updated