license_plate_api_usa 1.0.2 copy "license_plate_api_usa: ^1.0.2" to clipboard
license_plate_api_usa: ^1.0.2 copied to clipboard

outdated

This Dart package allows you view details from a license plate of a vehicle registered in the USA

license_plate_api_usa #

A Dart package for looking up technical details on vehicles registered in the USA by their license plate

license_plate_api_usa provides a simple way to find vehicle details from a license plate of a car, motorbike, or truck registered in the United States.

This requires a username and password, which is available for free from http://www.vehicleregistrationapi.com/

Usage #

A simple usage example:

import 'package:license_plate_api_usa/license_plate_api_usa.dart' as RegCheck;

void main(List<String> arguments) async {
  // Usage:
  // dart bin/main.dart *PLATE* *STATE* *USERNAME* *PASSWORD*
  // Where *PLATE* and *STATE* are the US license plate of the vehicle
  // *USERNAME* and *PASSWORD* are available from http://www.vehicleregistrationapi.com/
  var vehicle = await RegCheck.LicensePlateUSA(arguments[0],arguments[1],arguments[2],arguments[3]);
  print('Description: ${vehicle['Description']}');
  print('VIN: ${vehicle['VehicleIdentificationNumber']}');
}

which produces the following:

Description: 2004 Dodge Durango Limited
VIN: 1D8HB58D04F177301

Features and bugs #

Please file feature requests and bugs via the website http://www.vehicleregistrationapi.com/

2
likes
0
pub points
0%
popularity

Publisher

verified publisherinfiniteloop.ie

This Dart package allows you view details from a license plate of a vehicle registered in the USA

Homepage

License

unknown (LICENSE)

Dependencies

http

More

Packages that depend on license_plate_api_usa