vormkracht10/kvk-api

KvK API client (Dutch Chamber of Commerce API)
1,363 4
Install
composer require vormkracht10/kvk-api
Latest Version:v2.2.0
PHP:^7.4|^8.0|^8.1|^8.2|^8.3|^8.4
License:MIT
Last Updated:Mar 26, 2026
Links: GitHub  ·  Packagist
Maintainer: ux

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:

Installation

You can install the package via composer:

composer require vormkracht10/kvk-api

Upgrade guide

See the upgrade guide for more information on what has changed recently.

Usage

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

use Vormkracht10\KvkApi\ClientFactory;
$apiKey = '<KVK_API_KEY>';

// Optional SSL certificate
$rootCertificate = '<PATH_TO_SSL_CERT>';

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

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

Search with additional parameters

$companies = $kvk->search('Vormkracht10', [
'pagina' => 1,
'resultatenPerPagina' => 10
]);

Set page and results per page before searching

$kvk->setPage(2);
$kvk->setResultsPerPage(20);

Search by KvK number

$companies = $kvk->searchByKvkNumber('12345678');

Search by RSIN

$companies = $kvk->searchByRSIN('12345678');

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.

Related Packages

vormkracht10/flysystem-uploadcare

Flysystem driver for Uploadcare for Laravel.

38,147 18
gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

628,058,007 9,707
laravel/framework

The Laravel Framework.

576,155,700 34,907