Skip to main content

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, create one from the developers portal.

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>"