Skip to main content

MeetBot

Bot-as-a-Service for Meeting Recording & Transcription

🌐

Multi-Platform Support

Deploy bots to Google Meet, Zoom, and Microsoft Teams with a single unified API. No platform-specific code required.

🎬

Real-Time Recording

High-quality video and audio recording with automatic transcription and speaker diarization.

Simple REST API

Easy-to-use RESTful API with comprehensive documentation. Create, deploy, and manage bots programmatically.

🏠

Self-Hostable

Run MeetBot on your own infrastructure with Docker, Kubernetes, or AWS. Full control over your data.

🔔

Webhooks & Events

Real-time notifications for bot status changes, recording completion, and transcription events.

🔒

Secure & Scalable

Enterprise-grade security with API key authentication, rate limiting, and horizontal scaling support.

Supported Platforms

📹Google Meet
🎥Zoom
💼Microsoft Teams

Quick Start

# Create a bot
curl -X POST https://api.meetbot.dev/v1/bots \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "meetingInfo": {
      "platform": "google",
      "meetingUrl": "https://meet.google.com/abc-defg-hij"
    }
  }'

# Deploy the bot
curl -X POST https://api.meetbot.dev/v1/bots/{bot_id}/deploy \
  -H "Authorization: Bearer YOUR_API_KEY"