Documentation

Konvox documentation

Everything you need to run outreach campaigns, connect accounts, manage senders, and integrate with the Konvox API.


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:


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.