Authorization header. This page explains how to generate an API key from your account settings and how to pass it correctly in your requests.
Generate an API key
Open API key settings
In the Oviond app, click your account name in the top-right corner and select Settings. Navigate to the API Keys tab.
Create a new key
Click Create API Key. Give it a descriptive name (for example, “Zapier integration” or “Custom dashboard”) so you can identify it later.
Make authenticated requests
Include your API key in theAuthorization header as a Bearer token on every request:
YOUR_API_KEY with the key you generated above.
Example: Fetch your account
Authentication errors
| Status | Meaning |
|---|---|
401 Unauthorized | The Authorization header is missing or the key is invalid. |
403 Forbidden | Your key is valid but doesn’t have permission for this resource. |
401, double-check that you’ve included the Authorization: Bearer <key> header and that the key hasn’t been revoked.
Manage your API keys
You can list, create, and revoke API keys at any time from Settings → API Keys in the app, or via the API Keys API.Each API key is scoped to your account. Keys created by team members operate within their permission level.