API Key Management
n8n-deploy provides a simple and secure way to manage API keys for n8n server interactions.
🔑 API Key Operations
Add API Key
# Interactive key entry
echo "your_n8n_api_key" | n8n-deploy apikey add my_server
List API Keys
# Show all stored API keys
n8n-deploy apikey list
Get Specific API Key
# Retrieve details for a specific key
n8n-deploy apikey get my_server
Delete API Key
# Remove an API key (with confirmation)
n8n-deploy apikey delete my_server --confirm
Test API Key
# Validate API key with n8n server
n8n-deploy apikey test my_server --server-url http://n8n.example.com:5678
🔒 API Key Security
- Stored in plain text SQLite database
- No complex encryption
- Designed specifically for n8n API keys
- Created/last used timestamps tracked
💡 Best Practices
- Use unique, descriptive names for API keys
- Rotate keys periodically
- Use environment variables or .env files for sensitive keys
- Avoid sharing API keys publicly
📋 API Key Database Schema
Table: api_keys
Columns:
- name: Key identifier
- api_key: Plain text API key
- created_at: Creation timestamp
- last_used_at: Last usage timestamp
🆘 Troubleshooting
- Verify key matches n8n server requirements
- Check server URL
- Ensure key has necessary permissions
- Use
apikey testto validate key
📖 Related Guides
💻 API Key Management Workflow
# Add API key for multiple servers
echo "production_key" | n8n-deploy apikey add production_server
echo "staging_key" | n8n-deploy apikey add staging_server
# List and verify keys
n8n-deploy apikey list
# Test keys with specific servers
n8n-deploy apikey test production_server --server-url http://prod.n8n.com
n8n-deploy apikey test staging_server --server-url http://staging.n8n.com
# Remove unused key
n8n-deploy apikey delete old_server --confirm