Baspa / kvk-api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

KvK API client (Dutch Chamber of Commerce)

Latest Version on Packagist Tests Total Downloads

PHP package to communicate with the business register of the Dutch Chamber of Commerce.

At the moment it is only possible to search by company name. The result will contain the following data:

  • KvK number
  • Establishment number
  • Tradename
  • Address(es) (type, full address, street, housenumber, zip, city and country)
  • Website(s)

Installation

You can install the package via composer:

composer require vormkracht10/kvk-api

Usage

use Vormkracht10\KvkApi\ClientFactory;

$apiKey = '<KVK_API_KEY>';
$rootCertificate = '<PATH_TO_SSL_CERT>';

$kvk = ClientFactory::create($apiKey, $rootCertificate);

// Search by company name
$companies = $kvk->search('Vormkracht10');

Note: if you don't have an API key yet, get yours at the developer portal of the Chamber of Commerce

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

License

The MIT License (MIT). Please see License File for more information.

About

License:MIT License


Languages

Language:PHP 100.0%