Authentication & security

You'll need to authenticate your requests to access any of the endpoints in the OnRamp API. In this guide, we'll look at how authentication works. The OnRamp uses an API key as an Authentication: bearer for every request made.

API key

All the OnRamp api's use the API key as an authentication header. Here's how to authenticate using cURL:

Example request with basic auth

curl https://app.onramp.nl/api/v1/customers \
  -H "Authorization: Bearer {api_key}"

Was this page helpful?