JeffreyHyer / edmunds

Edmunds Vehicle API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Edmunds API

Installation

Add the following to your composer.json file:

{
    "require": {
        "jeffreyhyer/edmunds": "dev-master"
    }
}

And run composer install or composer update to install the correct version of the package.

Usage

TODO: Generate docs and put them in the /docs/ directory

API Key

TODO: Instructions for applying for an API Key through Edmunds/Mashery

Quick Start

<?php

require('vendor/autoload.php');

use Edmunds;

$edmunds = new Edmunds($apiKey);

// Decode a VIN
$vehicle = $edmunds->vehicle()->vin('12345678901234567');

About

Edmunds Vehicle API

License:MIT License


Languages

Language:PHP 100.0%