Authentication

You'll need to authenticate your requests to access any of the endpoints in the Zenreal API. In this guide, we'll look at how authentication works.

Obtaining API Keys

Before you can make requests to the Zenreal API, you will need to grab your API Key from your dashboard. You find it under Settings » API.

Authenticating API

For all API requests, you need to include the API Key in the Authorization header as a Bearer token or initialise our SDKs with the API Key.

Authentication

curl -G https://api.zenreal.app/v1/ \
  -H "Authorization: Bearer {YOUR_API_KEY}" \