Skip to content

k3v-d3v/vehicle-auditor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vehicle Auditor

Retrieve information about a license plate or VIN

Getting Started

Install the package:

npm install @k3v-d3v/vehicle-auditor

Example usage:

import { VehicleAuditor } from "@k3v-d3v/vehicle-auditor";
import { AxiosError } from "axios";

async function main() {
  try {
    const auditor = new VehicleAuditor();
    const response = await auditor.lookupLicensePlate("CA", "ABC1234");
    const vehicleInfo = response.data;
    console.log(JSON.stringify(vehicleInfo, null, 2));
  } catch (err: unknown) {
    const error = err as AxiosError;
    console.error(error);
  }
}

main();

Data Sources

Public VIN APIs:

Public License Plate APIs:

Requires reCAPTCHA:

Requires Web Scraping:

About

Retrieve information about a license plate or VIN

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published