Authentication
Acquiring an API key
All HTTP requests made against the Exorde API must be validated with an API key. If you don't have an API key yet, contact us.
Note that, for security reasons, we advise you to generate a new api key when you use the API for the first time.
Using Your API key
The Exorde API uses a bearer token authentication mechanism. The API key acts as a token and must be provided in the Authorization
header of your request. For example :
curl \
--url https://api.exorde.io/posts \
--header "X-Exorde-Api-Version: v1" \
--header "Accept: application/json" \
--header "Authorization: Bearer <api-key>"