license_plate_api_australia 1.1.0 copy "license_plate_api_australia: ^1.1.0" to clipboard
license_plate_api_australia: ^1.1.0 copied to clipboard

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

license_plate_api_australia #

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

license_plate_api_australia provides a simple way to find vehicle details from a license plate of a car registered in Australia

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

Usage #

A simple usage example:

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

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

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.carregistrationapi.com/

1
likes
20
pub points
0%
popularity

Publisher

verified publisherinfiniteloop.ie

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

Homepage

License

Apache-2.0 (LICENSE)

Dependencies

http

More

Packages that depend on license_plate_api_australia