2017 © Pedro Peláez
 

library vin-explosion

This API allows you to look up information for a vehicle by providing only the VIN.

image

frankperez87/vin-explosion

This API allows you to look up information for a vehicle by providing only the VIN.

  • Wednesday, June 24, 2015
  • by frankperez87
  • Repository
  • 1 Watchers
  • 2 Stars
  • 9 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 29 % Grown

The README.md

VinExplosion API

This API allows you to look up information for a vehicle by providing only the VIN., (*1)

This is not the official API, (*2)

Installation Instructions using Composer

composer require frankperez87/vin-explosion

Example Usage:

<?php

require 'vendor/autoload.php';

// Set your username and password provided by VinExplosion here.
$account = new \VinExplosion\Account('username', 'password');
$lookup = new \VinExplosion\Lookup($account);

// If you prefer to have the response return in XML format uncomment the following method
// $lookup->setResponseType('application/xml');

// By default the response is a JSON string.
$information = $lookup->requestVinInformation('VIN HERE');

$information = json_decode($information);

print '

';
print_r($information);
print '
';

Response

For documentation regarding the response and parameters click here., (*3)

The Versions

24/06 2015

dev-master

9999999-dev

This API allows you to look up information for a vehicle by providing only the VIN.

  Sources   Download

MIT

The Development Requires

01/01 2015

v1.0.0

1.0.0.0

This API allows you to look up information for a vehicle by providing only the VIN.

  Sources   Download

MIT

The Development Requires