Documentation

Voxely, end to end.

Guides, references, and the production playbook for shipping AI voice agents into a real sales motion.

Get started

Quickstart

Book your first AI meeting in fifteen minutes.

Concepts

Agents & Workflows

How the voice loop, planner, and verifier fit together.

Integrations

Salesforce & HubSpot

Bidirectional sync and field mapping.

Reference

REST & Webhooks

Programmatic control of every agent action.

Compliance

TCPA & DNC

State rules, opt-outs, and consent prompts.

Evaluation

Eval harness

Write golden sets and score releases.

Voice

Cloning & personas

Build a brand voice that survives at scale.

Security

SSO & RBAC

Provision teams via SCIM and lock down actions.

Quickstart

Place your first call.

# 1. authenticate
export VOXELY_API_KEY="vxl_live_..."

# 2. create an agent
curl -X POST https://api.voxely.com/v1/agents \
  -H "Authorization: Bearer $VOXELY_API_KEY" \
  -d '{"persona":"founding-AE","voice":"ren","script_id":"icp-cybersec-q2"}'

# 3. dial a list
curl -X POST https://api.voxely.com/v1/campaigns \
  -d '{"agent_id":"agt_91","prospects":["+14155551212"]}'