[ API Reference ]

Build anything on Vomenta.

REST APIs, webhooks and real-time events for calls, messages, contacts, campaigns and analytics — plus embeddable chat and click-to-call widgets, and BYOK for AI.

Authentication

Authenticate with an API key

All requests are made over HTTPS to api.vomenta.com/v1 and authenticated with a bearer token. Generate keys in your dashboard and keep them server-side.

Core resources

Calls, messages & contacts

Create and manage calls, messages, contacts and campaigns. Every resource supports list, retrieve, create and update with consistent pagination and filtering.

POST/v1/calls
GET/v1/messages
POST/v1/contacts
GET/v1/campaigns/{id}
Webhooks & events

Real-time events

Subscribe to events like call.completed and message.received. Vomenta signs every payload so you can verify authenticity.

Ready to build?

Generate keys and make your first call in minutes.

POST /v1/calls
curl https://api.vomenta.com/v1/calls \
  -H "Authorization: Bearer $VOMENTA_KEY" \
  -d from=+14155550100 \
  -d to=+14155550142 \
  -d agent_id=ag_8f22c1
200 OKapplication/json
{
  "id": "call_a1b2c3",
  "status": "ringing",
  "direction": "outbound",
  "agent_id": "ag_8f22c1"
}