Getting Your API Key
1
Sign Up
Create an account at fibonacci.today
2
Navigate to API Keys
Go to your Dashboard → Settings → API Keys
3
Generate a Key
Click “Create New Key” and give it a descriptive name
4
Copy Your Key
Copy the key immediately - it won’t be shown again!
Authentication Methods
Fibonacci supports multiple ways to provide your API key, in order of security:Method 1: System Keychain (Recommended)
The most secure option. Your API key is encrypted by the operating system.Save to Keychain
Use in Your Code
Supported Platforms
Check Security Status
CLI: Manage Credentials
Method 2: Environment Variable
Good for CI/CD pipelines and containerized deployments.Set the Variable
Use in Your Code
Method 3: .env File
Convenient for local development. Never commit to version control.
Create .env File
.env
Add to .gitignore
.gitignore
Use in Your Code
Method 4: Direct Parameter
Only use for quick testing. Never use in production code.Configuration Options
All available configuration options:Programmatic Configuration
Migrating to Secure Storage
If you’re currently using a.env file, migrate to keychain storage:
Option 1: CLI
Option 2: Python
Verifying Authentication
Test that your API key works:If you see your workflows listed, authentication is working correctly!
Next Steps
Build Your First Workflow
Start building with Fibonacci
Security Best Practices
Learn more about securing your workflows