kameli/nummerplade-api

A simple package to access http://www.nummerpladeapi.dk (Requires subscription)

v1.4.0 2023-06-05 14:22 UTC

This package is auto-updated.

Last update: 2024-04-05 16:03:11 UTC


README

This is a simple library to demonstrate how to use our API.

Find more information on http://www.nummerpladeapi.dk

If you have any non-code related questions, please send us an e-mail at info@kameli.dk

Installation

composer require kameli/nummerplade-api

Example

$client = new Kameli\NummerpladeApi\Client('API_TOKEN');

$vehicle = $client->vehicleByRegistration('REGISTRATION');
// $vehicle = $client->vehicleByVin('VIN');

$dmr = $client->dmr($vehicle->vehicle_id);
$debt = $client->debt($vehicle->vehicle_id);
$inspections = $client->inspections($vehicle->vehicle_id);