Skip to main content

Overview

API keys let you authenticate with the Orova API from your server or the embeddable widget. They’re an alternative to JWT tokens for server-to-server communication.

Create an API key

1

Go to Settings

In the dashboard, navigate to Settings → API Keys.
2

Create a key

Click Create API Key and give it a descriptive name.
3

Copy the key

Copy the key immediately — it’s only shown once.

Using API keys

Include the key in the x-api-key header:
Or in the widget:

Security best practices

  • Never expose API keys in client-side JavaScript (except the widget data-api-key)
  • Rotate keys periodically
  • Use separate keys for different environments (dev, staging, production)
  • Delete unused keys promptly