Skip to main content

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!
API keys start with fib_live_ (production) or fib_test_ (sandbox). Keep them secure and never share them publicly.

Authentication Methods

Fibonacci supports multiple ways to provide your API key, in order of security:
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:
Or use the CLI:
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