Getting Started
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.
1
Open your instance URL
Navigate to https://{your-slug}.voxenova.com in your browser.
2
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:
HTTP Header
Authorization: Bearer sk_your_api_key_here
Health Check
Confirm your instance is running with the health endpoint:
bash
curl -s https://{your-slug}.voxenova.com/health | python3 -m json.tool
A healthy response looks like:
json
{
"status": "healthy",
"version": "4.0.0",
"database": "connected",
"redis": "connected"
}