Authentication
Create and manage API keys for the Kimara API.
All Kimara API endpoints require authentication via an API key.
Passing Your API Key
Include your key in the Authorization header with a Bearer prefix:
curl https://kimara.ai/api/v1/apps/YOUR_APP_ID \
-H "Authorization: Bearer kim_YOUR_API_KEY"Alternatively, use the x-api-key header:
curl https://kimara.ai/api/v1/apps/YOUR_APP_ID \
-H "x-api-key: kim_YOUR_API_KEY"Creating API Keys
Create API keys from your Kimara dashboard under Settings > API Keys.
Security Best Practices
- Never expose API keys in client-side code or public repositories
- Use environment variables to store keys
- Rotate keys regularly
- Each key can be revoked independently from the dashboard