PHPackages                             jeffreymoelands/overheid-io - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. jeffreymoelands/overheid-io

ActiveLibrary[API Development](/categories/api)

jeffreymoelands/overheid-io
===========================

Library for overheid.io

334PHP

Since Jan 18Pushed 9y agoCompare

[ Source](https://github.com/jeffreymoelands/overheid-io)[ Packagist](https://packagist.org/packages/jeffreymoelands/overheid-io)[ RSS](/packages/jeffreymoelands-overheid-io/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

jeffreymoelands/overheid-io
===========================

[](#jeffreymoelandsoverheid-io)

This package provides a library for using overheid-io API.

API documents can be found on . This API requires authentication, you get an API key by registering on the website.

Installation
------------

[](#installation)

Install using composer:

```
composer require jeffreymoelands/overheid-io

```

Usage
-----

[](#usage)

After installation, you can inject the OverheidIo in your project to access all the resources:

```
use Jeffreymoelands\OverheidIo;

$overheid = new OverheidIo($api_key);
```

Or you can access each resource by initiating them directly:

```
// init voertuig resource
use Jeffreymoelands\OverheidIo\Recources\Voertuig;
$voertuig = new Voertuig($api_key);

// init kvk resource
use Jeffreymoelands\OverheidIo\Recources\Kvk;
$voertuig = new Kvk($api_key);

// init bag resource
use Jeffreymoelands\OverheidIo\Recources\Bag;
$voertuig = new Bag($api_key);
```

Resource Voertuig
-----------------

[](#resource-voertuig)

```
$overheid = new OverheidIo($api_key);

// get car information by licence plate
$response = $overheid->voertuig()->get('76-GP-LH');

// search for car information (for applying filters see section filtering below)
$response = $overheid->voertuig()->search();
```

Resource Bag
------------

[](#resource-bag)

```
$overheid = new OverheidIo($api_key);

// get bag information by bag id
$response = $overheid->bag()->get('3015ba-nieuwe-binnenweg-10-a');

// search for bag information (for applying filter see section filtering below)
$response = $overheid->bag()->search();

// suggest function can used for autocomplete purposes
$response = $overheid->bag()->suggest('Valken');
```

Resource KVK
------------

[](#resource-kvk)

```
$overheid = new OverheidIo($api_key);

// get kvk information by dossier number and subdossier number
$response = $overheid->kvk()->get('22063560', '0000');

// search for kvk information (for applying filter see section filtering below)
$response = $overheid->kvk()->search();

// suggest function can used for autocomplete purposes
$response = $overheid->kvk()->suggest('Valken');
```

Filtering
---------

[](#filtering)

For filtering in the search functions of each resource you can call the next filter functions:

```
// for example we create the vervoer resource directly
use Jeffreymoelands\OverheidIo\Recources\Voertuig;
$voertuig = new Voertuig($api_key);

// filter for 100 items
$voertuig->size(100);

// filter for page 1
$voertuig->page(1);

// set ordering
$voertuig->order(100);

// add the fields merk and eerstkleur
$voertuig->fields(['merk', 'eerstekleur']);

// filters for bmw
$voertuig->filter(['merk' => 'BMW']);

// query for car brand ending with laren
$voertuig->query('*laren');

// apply query on the merk field
$voertuig->query(['merk']);

// search for cars by calling the search function:
$voertuig->search();
```

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/6706a22fe7471d6178f71d916f932fb7d66b5028a87810bab2e25bf423b0c4f9?d=identicon)[jeffreymoelands](/maintainers/jeffreymoelands)

### Embed Badge

![Health badge](/badges/jeffreymoelands-overheid-io/health.svg)

```
[![Health](https://phpackages.com/badges/jeffreymoelands-overheid-io/health.svg)](https://phpackages.com/packages/jeffreymoelands-overheid-io)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M271](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
