Generating an API Key
Name your key
Give it a descriptive label so you know what it’s used for - e.g.
CRM Integration, Zapier Automation, or Production App.
Using Your API Key
Include your API key in theAuthorization header of every API request:
Example
Managing Existing Keys
From the Settings → API Keys screen you can:| Action | How |
|---|---|
| Rename a key | Click the edit icon next to the key name |
| Revoke a key | Click Delete or Revoke - this immediately blocks all requests using that key |
| Regenerate a key | Revoke the old one and create a new key with the same label |
Security Best Practices
Never expose keys in frontend code
Never expose keys in frontend code
API keys must only be used server-side. Never include them in JavaScript that runs in a browser - they can be extracted and misused.
Use environment variables
Use environment variables
Store keys in environment variables, not hardcoded in your codebase:
Create one key per integration
Create one key per integration
Use a separate key for each system - CRM, automation tool, production app. This way, if one is compromised, you revoke only that key without breaking everything else.
Revoke unused keys
Revoke unused keys
Regularly audit your API Keys list and revoke any keys that are no longer in use.
Common Integration Use Cases
| Integration | What It Does |
|---|---|
| CRM | Auto-create or update leads after every call completes |
| Calendar / Scheduling | Sync appointment bookings made by your AI agent |
| Zapier / Make | Trigger no-code automation workflows on call events |
| Custom Application | Build internal tools that read call logs or manage agents |
| Analytics Platform | Push call data into your BI or reporting tools |
Next Steps
Authentication
Understand how API authentication works and security best practices.
Integrations
Connect Valuez AI with your CRM, calendar, and automation tools.
Webhooks
Receive real-time event notifications when calls complete or agents take action.
API Reference
Full endpoint documentation once your API is published.