🇵🇾Paraguay

Service to consult vehicles from Paraguay using their license plate.

Paraguayan Vehicle Information

GET - https://api.verifik.co/v2/py/vehicle

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.

Implementation

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Name
Type
Required?
Description
Example

plate

String

True

Plate number to consult.

ABC123

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 {
  const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

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"
}

Last updated