rapidez/postcodeservice

Rapidez Postcodeservice
2,445 1
Install
composer require rapidez/postcodeservice
Latest Version:5.0.0
PHP:^8.0
License:GPL-3.0-or-later
Last Updated:Mar 20, 2026
Links: GitHub  ·  Packagist
Maintainer: rapidez

Rapidez Postcodeservice

Integration with postcodeservice.com. This package listens to postcode and street[1] changes (which should be used as house number), when there is a change an API call will be made and the results will be added to city and street[0]. The responses will be cached to reduce API calls.

Installation

composer require rapidez/postcodeservice

Configuration

Add your credentials in the .env

POSTCODESERVICE_CLIENT_ID=
POSTCODESERVICE_SECURE_CODE=

Customisation

In case you have your own postcode fields you want checked and updated you can emit the postcode-change event passing a reactive object with the following keys:

  • country_id/country_code
  • postcode
  • street[0]
  • street[1]
  • city

Then you can use it like:

<input
    v-on:change="window.$emit('postcode-change', addressVariables)"
    name="postcode"
    label="Postcode"
    v-model="addressVariables.postcode"
    required
/>
<input
    v-on:change="window.$emit('postcode-change', addressVariables)"
    name="street[1]"
    type="number"
    label="House number"
    v-model="addressVariables.street[1]"
    placeholder=""
/>

Note

Currently only Dutch address completion is implemented!

License

GNU General Public License v3. Please see License File for more information.