Skip to main content
To access the Keevx API and perform operations, you must authenticate your requests using an API key.

Getting Your API Key

You can generate and manage your API keys from the Dashboard.
  1. Sign in to your Keevx account
  2. Click your account avatar in the top navigation
  3. Select Dashboard → API Key
  4. Create a new API key
  5. Copy and securely store the key
This API key will be used to authenticate all API requests made on your behalf.

Authentication Method

Keevx uses Bearer Token authentication. Include your API key in the Authorization header of every request:
Authorization: Bearer <YOUR_API_KEY>
Example
curl https://api.keevx.com/v1/example -H "Authorization: Bearer YOUR_API_KEY"

📘 API Plans & Usage Limits

API usage limits depend on the API plan associated with your account. All accounts may have access to a free or trial tier with limited usage. Paid API plans provide higher rate limits, larger quotas, and access to advanced features. For detailed pricing and usage limits, please refer to the Pricing & Limits page.

❗️ Protect Your API Key

Your API key acts like a password. Anyone with access to your API key can make API requests and consume resources on your behalf. Best practices:
  • Keep your API key secret and secure
  • Do not expose it in client-side or public code
  • Store it in environment variables
If you believe your API key has been compromised, immediately revoke it from the Dashboard, or contact support for assistance.