API-register: Tools API v1

Details van API: Tools API v1

Beschrijving

API to access the tools endpoints of developer.overheid.nl.

Auth

This API provides tools endpoints that can be accessed with either an API key or a client credentials token.

API key

Using an API key, you can access the tools endpoints. These requests can also be made from the browser. Request a read-only API key at https://apis.developer.overheid.nl/apis/key-aanvragen. Simply pass the obtained API key with each request using the X-Api-Key header.

Client credentials token

Using a client credentials token, you can access the tools endpoints. To obtain the token, perform a POST request to https://auth.developer.overheid.nl/realms/don/protocol/openid-connect/token with the following Form URL Encoded body:

  • grant_type: client_credentials
  • scope: tools
  • client_id: the client id you received from us
  • client_secret: the client secret you received from us

Pass the obtained token with each request using the Authorization header. Example:

Authorization: Bearer {ACCESS_TOKEN} (replace {ACCESS_TOKEN} with the obtained access_token)