frankperez87/vin-explosion

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

v1.0.0 2015-01-01 15:35 UTC

This package is auto-updated.

Last update: 2024-04-14 15:52:34 UTC


README

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

This is not the official API

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 '<pre>';
print_r($information);
print '</pre>';

Response

For documentation regarding the response and parameters click here.