Skip to main content
Valuez AI uses two types of authentication depending on how you’re accessing the platform — the Dashboard for no-code management, and the API for programmatic access.

Dashboard Login

The Valuez AI dashboard is available at app.valuez.ai.
1

Go to the login page

Visit app.valuez.ai in your browser.
2

Enter your credentials

Enter the email address and password you registered with. If you signed up via Google or another provider, use that option instead.
3

Access your workspace

After login you’ll land on your main dashboard where you can manage agents, calls, contacts, and settings.
Valuez AI Login Screen

Workspace Security

Your Valuez AI workspace includes the following security features:
FeatureDetails
Secure LoginAll sessions run over HTTPS with encrypted connections
Password ProtectionPasswords are hashed and never stored in plain text
Session SecuritySessions expire automatically after a period of inactivity
Workspace AccessEach workspace is isolated - team members only see what they’re permitted to
Role-Based AccessAdmins can assign roles to control what each team member can view or edit

API Authentication

All Valuez AI API requests are authenticated using an API key passed in the request header:
Authorization: Bearer YOUR_API_KEY

Example Authenticated Request

curl "https://api.valuez.ai/v1/agents" \
  -H "Authorization: Bearer YOUR_API_KEY"
import requests

response = requests.get(
    "https://api.valuez.ai/v1/agents",
    headers={"Authorization": "Bearer YOUR_API_KEY"}
)

print(response.json())
const response = await fetch("https://api.valuez.ai/v1/agents", {
  headers: {
    "Authorization": "Bearer YOUR_API_KEY"
  }
});

const data = await response.json();
console.log(data);
To generate your API key, see API Keys.

Security Best Practices

API keys must only be used server-side. Never include them in JavaScript that runs in a browser - they can be extracted and misused.
Store keys in environment variables, not hardcoded in your codebase:
    export VALUEZ_API_KEY="your-key-here"
Use a separate key for each system - CRM, automation tool, production app. If one is compromised, you revoke only that key without breaking everything else.
Regularly audit your API Keys list and revoke any keys that are no longer in use.
If you suspect your API key has been exposed, go to Settings → API Keys in your dashboard and regenerate it immediately.

Next Steps

Get Your API Keys

Generate and manage API keys from your dashboard settings.

Dashboard Overview

Understand every section of your Valuez AI dashboard.

Create an Agent

Build your first AI voice agent from the dashboard or via API.

Integrations

Connect Valuez AI with your CRM, calendar, and other tools.