Documentation
Konvox documentation
Everything you need to run outreach campaigns, connect accounts, manage senders, and integrate with the Konvox API.
Deliverability guide
Warm up senders, protect your domain reputation, and maximize inbox placement.
API reference
Full REST API reference. Manage campaigns, contacts, and senders programmatically.
Webhook events
Subscribe to real-time events: replies, opt-outs, enrollment state changes, and more.
Support
Can't find what you need? Open a support ticket from inside the app.
What is Konvox?
Konvox is an outreach platform that combines LinkedIn automation, email sequencing, and AI-assisted replies in one place. It works across channels so you can run multi-touch campaigns without switching tools.
The main building blocks:
- Connections - LinkedIn, email, and social accounts you connect to send from
- Sender identities - Email addresses on your company's Konvox subdomain, with built-in warmup
- Campaigns - Automated sequences with steps, delays, and branching logic
- Contacts - Leads you enroll into campaigns, with profile enrichment and scoring
- Profiles - AI personas that control tone, language, and reply style
Authentication
Every API request needs an API key in the Authorization header. Keys start with kvx_live_ and can be created in Settings > API keys.
# Pass your key as a Bearer token
curl https://app.konvox.io/api/campaigns \
-H "Authorization: Bearer kvx_live_your_key_here"
Keys are scoped. A read key can fetch data but not create or update records. Use full scope for write operations.
Base URL
All API endpoints are under:
https://app.konvox.io/api
Responses always follow the envelope format:
{
"data": { /* the result */ },
"error": null,
"meta": { "total": 12 } // on list endpoints
}
On errors, data is null and error contains a human-readable message.