Getting Your API Key
1
Sign in to the Mufi Dashboard
Go to my.mufi.app and authenticate with your email via magic link.
2
Select or create a project
Each project has its own users, events, products, and API keys.
3
Generate an API key
Navigate to the API Keys section and generate a new key. You’ll receive a JWT token to use in your API requests.
Don’t have an account? Email connect@mufi.app to request access.
Using Your API Key
Include your API key as a Bearer token in theAuthorization header of every request:
Permission Levels
Each API key has one of two permission levels:
Calling a write-only endpoint with a read-only key returns
403 Forbidden.
Key Management
Security Checklist
Store API keys in environment variables, never in source code
Use keys only on the server side — never expose them in frontend code
Use read-only keys when you only need to query data
Regenerate keys immediately if you suspect they’ve been compromised
Use separate keys for staging and production environments