An open API service indexing awesome lists of open source software.

https://github.com/fvdm/nodejs-overheid.io

Access overheid.io endpoints like OpenKvK, RDW and BAG with node.js
https://github.com/fvdm/nodejs-overheid.io

api-client dutch government nodejs overheid register unlicense

Last synced: about 1 month ago
JSON representation

Access overheid.io endpoints like OpenKvK, RDW and BAG with node.js

Awesome Lists containing this project

README

        

overheid.io
===========

overheid.io API wrapper

[![npm](https://img.shields.io/npm/v/overheid.io.svg?maxAge=3600)](https://github.com/fvdm/nodejs-overheid.io/blob/master/CHANGELOG.md)
[![Build Status](https://travis-ci.org/fvdm/nodejs-overheid.io.svg?branch=master)](https://travis-ci.org/fvdm/nodejs-overheid.io)
[![Coverage Status](https://coveralls.io/repos/github/fvdm/nodejs-overheid.io/badge.svg?branch=master)](https://coveralls.io/github/fvdm/nodejs-overheid.io?branch=master)
[![bitHound Dependencies](https://www.bithound.io/github/fvdm/nodejs-overheid.io/badges/dependencies.svg)](https://www.bithound.io/github/fvdm/nodejs-overheid.io/master/dependencies/npm)
[![bitHound Code](https://www.bithound.io/github/fvdm/nodejs-overheid.io/badges/code.svg)](https://www.bithound.io/github/fvdm/nodejs-overheid.io)
[![Greenkeeper badge](https://badges.greenkeeper.io/fvdm/nodejs-overheid.io.svg)](https://greenkeeper.io/)

* [Node.js](https://nodejs.org)
* [overheid.io](https://overheid.io)
* [API documentation](https://overheid.io/documentatie)

Example
-------

```js
// Configuration
var ovio = require ('overheid.io') ({
apikey: 'abc123',
dataset: 'rdw'
});

// Post process callback
function postProcess (err, data) {
console.dir (err || data, {
depth: null,
colors: true
});
}

// Get details about one license plate
ovio ({
path: '4-TFL-24',
params: {
fields: ['eerstekleur', 'vervaldatumapk']
},
callback: postProcess
});

// Search the dataset
ovio ({
params: {
filters: { merk: 'bmw' }
},
callback: postProcess
});
```

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

`npm install overheid.io`

Configuration
-------------

This module provides one _function_, use it for configuration.

#### Config parameters

param | type | required | default | description
:-------|:--------|:---------|:--------|:--------------------
apikey | string | yes | | Your account API key
dataset | string | no | | Which dataset to use
timeout | integer | no | 5000 | Wait time out in ms

```js
var ovio = require ('overheid.io') ({
apikey: 'abc123',
dataset: 'voertuiggegevens'
});
```

API function
------------

param | type | required | default | description
:--------|:---------|:---------|:---------------------------|:------------------------------
path | string | no | | Resource path, i.e. `DA-GO-12`
params | object | no | | Parameters to send along
dataset | string | no | `config.dataset` | Which dataset to use
timeout | integer | no | `5000` or `config.timeout` | Wait timeout in ms
callback | function | yes | | `function (err, data) {}`

See [Example](#example) above

Errors
------

message | description | properties
:----------------|:------------------------------|:--------------------------------
request failed | The request failed | `.code`, `.error`, `.error.code`
no results | The result was empty | `.code`
API error | The API returned an error | `.code`, `.error`
invalid response | The API returned invalid data | `.code`, `.body`

Unlicense
---------

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to

Author
------

[Franklin van de Meent](https://frankl.in)

[![Buy me a coffee](https://frankl.in/u/kofi/kofi-readme.png)](https://ko-fi.com/franklin)