Getting Started
Your first meeting bot in 5 minutes
01Get your API key
Sign up at serveka.com. Grab your API key from the dashboard under Settings → API Keys.
02Send a bot to a meeting
bash
curl -X POST https://api.serveka.com/v1/bots \
-H "X-API-Key: sk_live_your_key" \
-d '{"platform":"google_meet","meeting_url":"https://meet.google.com/xxx-yyyy-zzz"}'03Open the SSE stream
Watch transcripts arrive in real-time as people speak.
bash
curl -N https://api.serveka.com/v1/bots/bot_xxxxx/stream
04Fetch the full transcript
When the meeting ends, get everything in one call.
bash
curl https://api.serveka.com/v1/transcripts/google_meet/xxx-yyyy-zzz \ -H "X-API-Key: sk_live_your_key"
That's it. You have a working meeting bot integration.