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.
Always keep your keys safe and regenerate it if you suspect it has been compromised. Please don't commit your keys to git! Store your API key in environment variables or secure storage solutions to prevent accidental exposure
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}" \