API Authentication
Start making requests to the API
Generate Private and Public Key
Before using the API you need to get an API_KEY
by sending us an email with your Public Key.
Private Key
openssl genrsa -out private-key.rsa 2048
openssl pkcs8 -topk8 -inform PEM -outform PEM -nocrypt -in private-key.rsa -out private-key.pem
Public Key
openssl rsa -in private-key.rsa -pubout -out public-key.pem
Authenticate your API requests
To start making requests to our API, you will first need to authenticate. We propose you 2 different ways to build your authentication headers:
- Build your own authentication headers based on the document provided here. Our authentication is based on the HTTP signature protocol.
- The fastest way to get started with our API is to use our Postman collection and environments. We built a pre-script for you so that you do not have to lose time with building your own authentication.
Updated about 1 year ago