Alle Vergleiche · vs Attendee
Attendee is the closest in spirit to meetbot — a developer-first, source-available, Docker-friendly meeting-bot stack with a clean dev experience. The two substantive differences: license (they're Elastic 2.0 across the stack, our SDK + samples are MIT — bot binary closed) and platform coverage today (they ship Meet + Zoom; we ship eight API surfaces: Meet, Teams, Zoom Web, Zoom SDK, Webex, Whereby, Jitsi, and Discord). Their hosted free tier is genuinely good for prototyping; their paid tier pricing isn't publicly listed yet.
01 · Kurzfassung
Nimm Attendee wenn…
Nimm meetbot wenn…
02 · Spezifikationstabelle
Zahlen verifiziert gegen die zitierte Quelle am Datum im Footer. PR die Korrektur, wenn sich was bewegt hat.
| meetbot | Attendee | ||
|---|---|---|---|
| platforms today | Meet, Teams, Zoom Web, Zoom SDK, Webex, Whereby, Jitsi, Discord | Meet, Zoom (Teams + Webex on roadmap)[1] | |
| SDK license ELv2 prohibits offering a competing hosted service. | MIT | Elastic License 2.0[2] | |
| self-host story | M5 (source-available) | Docker compose today[3] | |
| hosted pricing | $0.30 / hr entry rate, published volume tiers | free tier; paid not listed[4] | |
| transcription | BYOK today (free pass-through on per-speaker audio); hosted Whisper-large-v3 ships Q3 2026 | BYOK (Deepgram, etc.) | |
| transports | webhook · websocket · RTMP | webhook · websocket | |
| data residency | Hetzner Falkenstein (DE) | self-host: anywhere; hosted: not specified | |
| pricing exposed | this page | after a sales conversation (paid) | |
| production maturity | pre-launch (zero paying customers today; sample apps + daily smoke tests against real meetings) | growing fast, similar early stage | |
| OAuth-managed signed-in bots | M3 (Zoom · Meet · Teams); URL-based guest bots ship across all 8 surfaces | yes (Zoom, Meet) |
03 · Preis-Szenarien
Drei Nutzungspunkte: Hobbyist, Startup und skaliertes Unternehmen. Formel pro Zelle sichtbar — kopiert sie in eine Tabelle, setzt eure eigenen Zahlen ein.
10 Stunden Meeting-Aufnahme pro Monat.
Attendee's hosted free tier covers this if your bot count fits. We can't predict their paid tier. If $3/mo is your gating cost, hosted Attendee wins; otherwise indistinguishable.
1,000 Stunden Meeting-Aufnahme pro Monat.
We can't quote because Attendee's paid tier isn't public. If you need predictable pricing for your finance model, that's a real edge for us at this scale.
50,000 Stunden Meeting-Aufnahme pro Monat.
At this scale you'd self-host Attendee on your own infra (~$300–800/mo Hetzner + ~0.3 FTE ops) which probably beats both hosted options. Worth a real proof-of-concept.
04 · wo sie gewinnen
Wir nehmen diesen Abschnitt auf, weil die Alternative — so zu tun, als gewännen wir überall — unehrlich ist, und unehrliche Vergleichsseiten sind der Grund, warum die meisten nicht lesenswert sind.
05 · wo wir gewinnen
Jede Zeile linkt zur Doc-Seite, die es belegt. Zahlen, keine Adjektive. Recherchiert gegen die öffentliche Oberfläche von Attendee zum Datum unten.
06 · Migration
Gleiche Form, gleiche Felder, anderer Host. Ersetzt euren Attendee Bot-Dispatch-Call durch einen meetbot-Call. Webhook-Payloads landen in derselben JSON-Form, die euer Handler schon parst.
// Attendee
const res = await fetch("https://app.attendee.dev/api/v1/bots", {
method: "POST",
headers: {
Authorization: `Token ${process.env.ATTENDEE_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
meeting_url: "https://meet.google.com/abc-defg-hij",
bot_name: "notes",
transcription_settings: { provider: "deepgram" },
webhook_url: WEBHOOK_URL,
}),
});// meetbot — transcription is BYOK today (hosted Whisper Q3 2026)
const res = await fetch("https://api.meetbot.dev/api/v1/bot", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.MEETBOT_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
meeting_url: "https://meet.google.com/abc-defg-hij",
bot_name: "notes",
// per-speaker audio in your bucket; pipe to your provider
webhook_url: WEBHOOK_URL,
}),
});07 · FAQ
Zuletzt geprüft am 2026-05-09 gegen Attendees öffentliche Daten. Fehler entdeckt? Auf GitHub korrigieren.