Skip to main content

Overview

Nova API uses Auth0 for authentication, providing enterprise-grade security. All API requests must include a valid API key.
All data is encrypted in transit using TLS 1.3 and at rest using AES-256 encryption.

API Keys

Create and manage API keys from the Dashboard in your Organization Settings. When creating an API key, you can select its scope to control which parts of the API it can access.

Using API Keys

Include your API key in the Authorization header of all requests:
curl --request GET \
  --url https://<API_ENDPOINT> \
  --header 'Authorization: Bearer YOUR_API_KEY'
Keep your API keys secure. Never expose them in client-side code or public repositories.