Description

This service provides detailed information about a vehicle in Paraguay using its license plate number. The response includes vehicle details such as the brand, chassis, type, year, number of axles, the owner's name, the type of service, the current status of the vehicle, and the license plate number.

Parameters

Name Type Required? Description Example
plate String True Plate number to consult. ABC123

Implementation

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/py/vehicle>',
  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 200 - (successful response)

{
    "data": {
        "axles": "3",
        "brand": "MERCEDES BENZ",
        "chassis": "9BM958207GB012345",
        "owner": "CI086-COOPERATIVA CHORTITZER LTDA.",
        "plate": "ABC123",
        "service": "CARGA NACIONAL",
        "situation": "VENCIDA",
        "type": "CAMION CISTERNA",
        "year": "2023"
    },
    "signature": {
        "dateTime": "June 24, 2024 7:34 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "Z4ALR"
}

Other responses

Code Description Response Body
404 Not Found Not Found {
"code": "NotFound",
"message": "Record not found.",
"signature": {
"dateTime": "August 31, 2022 3:24 PM",
"message": "Certified by Verifik.co"
}
}
409 Conflict Missing params. {
"code": "MissingParameter",
"message": "missing plate\n"
}