Authentication
Learn how to authenticate your API requests using API keys.
How Authentication Works
Every request to the Neuroviz API must include an API key. This key identifies your account and tracks your credit usage. Include your key in the Authorization header of each request:
HTTP Header
Authorization: Bearer YOUR_API_KEYGet Your API Key
API Access Requires Pro Plus or Agency Plan
Sign up at app.neuroviz.ai and upgrade to Pro Plus or Agency plan to create API keys and start automating your workflows.
Go to AppSecurity Best Practices
Keep Keys Secret
Never expose your API keys in client-side code, public repositories, or share them with others.
Rotate Keys Regularly
Create new keys periodically and delete old ones to minimize risk if a key is compromised.
Use Environment Variables
Store your API key in environment variables, not hardcoded in your source code.