The whole platform, behind one key
Calls, messages, agents, workflows, and knowledge — one REST API, with SDKs for Node and Python.
Start in minutes
Install the SDK, create a key, place your first call.
from vorden import Vorden
client = Vorden(api_key="vorden_9f2c1a8b4e07d31c")
call = client.calls.create(
to="+49 30 901820",
agent="support",
)
print(call.outcome) # "resolved"An event for everything
Calls, messages, runs — everything lands in an append-only ledger. Subscribe by webhook; replay anything you missed.
Keep your client, swap the URL
An OpenAI-compatible /v1 endpoint — your existing chat client talks to Vorden agents with a one-line change.
from openai import OpenAI client = OpenAI( base_url="https://api.vorden.ai/v1", # the only change api_key=VORDEN_API_KEY,) reply = client.chat.completions.create( model="vorden-agent:support", messages=[{"role": "user", "content": "Where is my order?"}],)Speaks your agent's language
Expose workflows as tools over MCP, hand off between platforms with A2A, or automate via Zapier.
Boring, in the good way
Idempotency keys, cursor pagination, per-key rate limits, and 31 fine-grained scopes.
Calls
Place and receive phone calls with full lifecycle webhooks.
Messages
One POST for SMS, WhatsApp, and Telegram.
Agents
Create, version, publish, roll back — or let AI author the agent.
Workflows
Execute Studio workflows and read every run.
Conversations
Stateful chat, plus an OpenAI-compatible endpoint — point your existing client at Vorden.
Events & webhooks
A ledger of everything that happened — with replay and retry.
Your first call is one POST away. What are we building?