1. Go to this page and download the library: Download werkspot/kvk-api library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
werkspot / kvk-api example snippets
use Werkspot\KvkApi\Http\Endpoint\Production;
use Werkspot\KvkApi\Http\Search\ProfileQuery;
use Werkspot\KvkApi\KvkClientFactory;
$client = KvkClientFactory::create('<YOUR_API_KEY>', new Production(), '/path/to/dutch-government-certificate.pem');
$profileQuery = new ProfileQuery();
$profileQuery->setKvkNumber('18079951');
$kvkPaginator = $client->getProfile($profileQuery);
foreach ($kvkPaginator->getItems() as $company) {
// {your code}
}
// get next set of data
$kvkPaginator = $client->getNextPage($kvkPaginator);
use Werkspot\KvkApi\Http\Endpoint\Production;
use Werkspot\KvkApi\Http\Search\SearchQuery;
use Werkspot\KvkApi\KvkClientFactory;
$client = KvkClientFactory::create('<YOUR_API_KEY>', new Production());
$searchQuery = new SearchQuery();
$searchQuery->setStreet('ABEBE Bikilalaan');
$kvkPaginator = $client->fetchSearch($searchQuery);
// get next set of data
$kvkPaginator = $client->getNextPage($kvkPaginator);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.