Guides
API Keys
Manage your API keys for secure access
API Keys Overview
API keys are used to authenticate your requests to the Influxion API. Each API key is associated with your account and provides secure access to your deployments.
Creating API Keys
- Navigate to Account → API Keys in the sidebar.
- Click Create API Key.
- Give your key a descriptive name (e.g., "Production API Key", "Development Key").
- Copy the API key immediately—you won't be able to see it again after closing the dialog.
Using API Keys
Include your API key in the Authorization header of all API requests:
Authorization: Bearer your-api-key-hereBest Practices
- Never commit API keys to version control - Use environment variables instead.
- Use separate keys for different environments - Create different keys for development, staging, and production.
- Rotate keys regularly - Delete old keys and create new ones periodically.
- Limit key scope - Use different keys for different applications or services.