PHPackages                             deniztezcan/laravel-postcodenl-api - 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. deniztezcan/laravel-postcodenl-api

ActiveLibrary[API Development](/categories/api)

deniztezcan/laravel-postcodenl-api
==================================

Laravel PostcodeNL API package

0.2.3(4y ago)14792MITPHP

Since Oct 24Pushed 4y ago1 watchersCompare

[ Source](https://github.com/deniztezcan/laravel-postcode-nl)[ Packagist](https://packagist.org/packages/deniztezcan/laravel-postcodenl-api)[ Docs](https://github.com/deniztezcan/laravel-postcodenl-api)[ RSS](/packages/deniztezcan-laravel-postcodenl-api/feed)WikiDiscussions master Synced today

READMEChangelog (5)Dependencies (2)Versions (6)Used By (0)

Laravel PostcodeNL API package
==============================

[](#laravel-postcodenl-api-package)

[![Latest Stable Version](https://camo.githubusercontent.com/05bba5a899e06837613669677f086ffe862e820f28350892e1535b9d4e6e2b53/68747470733a2f2f706f7365722e707567782e6f72672f64656e697a74657a63616e2f6c61726176656c2d706f7374636f64656e6c2d6170692f762f737461626c65)](https://packagist.org/packages/deniztezcan/laravel-postcodenl-api)[![Total Downloads](https://camo.githubusercontent.com/d7ff547eb49cf8bdee2114b9697c052e5ede389eda89c5e5cb18498921e96db9/68747470733a2f2f706f7365722e707567782e6f72672f64656e697a74657a63616e2f6c61726176656c2d706f7374636f64656e6c2d6170692f646f776e6c6f616473)](https://packagist.org/packages/deniztezcan/laravel-postcodenl-api)[![Latest Unstable Version](https://camo.githubusercontent.com/edfb58c518111dae2f96b99783c1eabfb8382b9bef0cad6f4586814d5a00940d/68747470733a2f2f706f7365722e707567782e6f72672f64656e697a74657a63616e2f6c61726176656c2d706f7374636f64656e6c2d6170692f762f756e737461626c65)](https://packagist.org/packages/deniztezcan/laravel-postcodenl-api)[![License](https://camo.githubusercontent.com/93ba95537b16841726177b8adffae12eb1c75c384b1da6314adfb19da4c06391/68747470733a2f2f706f7365722e707567782e6f72672f64656e697a74657a63616e2f6c61726176656c2d706f7374636f64656e6c2d6170692f6c6963656e7365)](https://packagist.org/packages/deniztezcan/laravel-postcodenl-api)[![StyleCI](https://camo.githubusercontent.com/3651f73c92271fbc4b582d49d83bb84a78ab6dd3cdf115bc802b1c5886816658/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3231323736373331372f736869656c643f6272616e63683d6d6173746572)](https://github.styleci.io/repos/212767317/shield?branch=master)

Intergrates the PostcodeNL API with Laravel 5 &amp; 6 via a ServiceProvider and Facade. This package currently supports only the validation of dutch addresses.

### Instalation

[](#instalation)

```
composer require deniztezcan/laravel-postcodenl-api

```

Add a ServiceProvider to your providers array in `config/app.php`:

```
    'providers' => [
    	//other things here

    	DenizTezcan\LaravelPostcodeNLAPI\PostcodeNLAPIServiceProvider::class,
    ];
```

Add the facade to the facades array:

```
    'aliases' => [
    	//other things here

    	'PostcodeNLAPI' => DenizTezcan\LaravelPostcodeNLAPI\Facades\PostcodeNLAPI::class,
    ];
```

Finally, publish the configuration files:

```
php artisan vendor:publish --provider="DenizTezcan\LaravelPostcodeNLAPI\PostcodeNLAPIServiceProvider"

```

### Configuration

[](#configuration)

Please set your API: `key` and `secret` in the `config/postcodenlapi.php`

### Usage

[](#usage)

To get the `street` and `city` linked to a Dutch `postalcode`, `housenr` and `extension`. The response is returned in json format, ideal for ajax.

```
use PostcodeNLAPI;

$data = PostcodeNLAPI::validateDutch('1010AA', '1', 'a');
```

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 83.3% of commits — single point of failure

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.

###  Release Activity

Cadence

Every ~186 days

Total

5

Last Release

1648d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/10155092?v=4)[Deniz Tezcan](/maintainers/deniztezcan)[@deniztezcan](https://github.com/deniztezcan)

---

Top Contributors

[![deniztezcan](https://avatars.githubusercontent.com/u/10155092?v=4)](https://github.com/deniztezcan "deniztezcan (5 commits)")[![iboldurev](https://avatars.githubusercontent.com/u/17103170?v=4)](https://github.com/iboldurev "iboldurev (1 commits)")

### Embed Badge

![Health badge](/badges/deniztezcan-laravel-postcodenl-api/health.svg)

```
[![Health](https://phpackages.com/badges/deniztezcan-laravel-postcodenl-api/health.svg)](https://phpackages.com/packages/deniztezcan-laravel-postcodenl-api)
```

###  Alternatives

[skagarwal/google-places-api

Google Places Api

1913.0M8](/packages/skagarwal-google-places-api)[dcblogdev/laravel-microsoft-graph

A Laravel Microsoft Graph API (Office365) package

168285.5k1](/packages/dcblogdev-laravel-microsoft-graph)[vluzrmos/slack-api

Wrapper for Slack.com WEB API.

102589.1k3](/packages/vluzrmos-slack-api)[smodav/mpesa

M-Pesa API implementation

16363.7k1](/packages/smodav-mpesa)[jasara/php-amzn-selling-partner-api

A fluent interface for Amazon's Selling Partner API in PHP

1344.8k1](/packages/jasara-php-amzn-selling-partner-api)[grantholle/powerschool-api

A Laravel package to make interacting with PowerSchool less painful.

1715.6k1](/packages/grantholle-powerschool-api)

PHPackages © 2026

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