kameli/nummerplade-api

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

Installs: 8 057

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/kameli/nummerplade-api

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

This package is auto-updated.

Last update: 2025-10-05 19:04:22 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);