Getting Started
Looking for a simpler start? See the Quick Start guide — no technical setup required.
Welcome to VoxeNova. This guide walks you through your first login, API authentication, and a quick health check to confirm your environment is live.
What You Received
After registration, your welcome email contains:
- Instance URL — your dedicated dashboard at
{slug}.voxenova.com - API Key — a
sk_...key for authenticating API requests - Trial period — 14 days, 1 meeting, 20-minute cap
Keep your API key safe. It is shown only once in the welcome email. If you lose it, contact support for a replacement.
First Login
Visit your instance URL in any modern browser. The dashboard shows your meeting history, upcoming schedules, and real-time status.
Open your instance URL
Navigate to https://{your-slug}.voxenova.com in your browser.
Verify the dashboard loads
You should see the VoxeNova dashboard with your company name and trial status.
API Authentication
All API requests require an Authorization header with your API key:
Authorization: Bearer sk_your_api_key_here
Health Check
Confirm your instance is running with the health endpoint:
curl -s https://{your-slug}.voxenova.com/health | python3 -m json.tool
A healthy response looks like:
{
"status": "healthy",
"version": "4.0.0",
"database": "connected",
"redis": "connected"
}