Serveka is a meeting bot API platform for developers. Instead of installing SDKs, managing WebRTC connections, or orchestrating virtual machines, you make a single HTTP request — and a bot joins your meeting in seconds. It captures audio and video, transcribes every speaker in real time via Deepgram, generates AI summaries with Claude, and delivers every event to your application through SSE streams and signed webhooks. Serveka handles the infrastructure layer — meeting platform integration, audio encoding, transcription pipelines, VM orchestration, and retry logic — so your team can focus on building product on top of meeting intelligence instead of building the plumbing beneath it.
No SDK installs. No platform credentials to configure. Just an HTTP POST and a meeting URL — Serveka handles every layer beneath.
# Send bot to any meeting curl -X POST https://api.serveka.com/v1/bots -H "X-API-Key: vx_your_key" -d '{ "platform": "google_meet", "meeting_url": "https://meet...", "bot_name": "Notetaker", "transcribe_enabled": true }'
# Response { "bot_id": "bot_01JXMK9T4VQPZ8N", "status": "joining", "platform": "google_meet", "join_at": "2026-05-04T14:23:01Z", "webhook_endpoint": "..." } # Bot joins in ~15 seconds. You'll # receive bot.joined via webhook.
Everything Serveka does is exposed as a primitive on the same bot_id — join, record, transcribe, control, retrieve. No extra SDKs. No auth flows.
Other bot APIs give you transcription. Serveka gives you a programmable participant. Mid-meeting control, TTS, calendar auto-join — all on the same primitive.
| Capability | Serveka | Other bot APIs | Build yourself |
|---|---|---|---|
| Real-time transcript streaming | partial | — | |
| Bot speaks back (TTS) | — | — | |
| Mid-meeting bot controls | — | — | |
| Calendar auto-join | — | ||
| Crash-safe recording | partial | — | |
| Usage-based pricing | partial | ||
| Free to start, no credit card | — |
Billed by the minute. Every plan gets the full API — recording, real-time transcription, webhooks, and bot controls.
Get an API key, send a POST request. The bot is in the meeting before the next sip cools.