API credentials

After creating a sandbox application on the dashboard, you get a set of API credentials (client_id and client_secret). They are the application's credentials and will be used in every API request to authenticate the app.

The client_secret, as its name suggests, should be stored securely in order to make sure that only you is making calls registering as your application.

Sandbox applications are for testing only and are limited to 20 users.

When ready to go in production, contact us and we'll provide you with your production credentials.

❗️

Do not use your sandbox credentials in your production environment!

curl "https://sync.bankin.com/v2/banks" \
	-X GET \
  -H 'Bankin-Version: 2019-02-18' \
	-H 'Client-Id: MY_CLIENT_ID' \
	-H 'Client-Secret: MY_CLIENT_SECRET'