Todas las comparaciones · vs Otter.ai
Esta página existe porque Otter aparece en cada búsqueda de «grabación de reuniones». No somos el mismo producto: Otter es el SaaS de usuario final, y meetbot es la API de desarrollador sobre la que se construiría un producto como Otter. A continuación explicamos el marco, la forma del precio (por asiento vs por hora) y cuándo elegir uno sobre el otro. Si llegaste aquí buscando una app de notas de reuniones para ti, la respuesta honesta es: instala Otter. Si eres un desarrollador enviando una funcionalidad que graba reuniones, sigue leyendo.
01 · tl;dr
Usa Otter.ai si…
Usa meetbot si…
02 · tabla de specs
Números verificados contra la fuente citada en la fecha del pie de página. Envía un PR si algo cambió.
| meetbot | Otter.ai | ||
|---|---|---|---|
| what is it | developer API (HTTP + SDKs) | SaaS app (web + mobile + Chrome ext) | |
| primary buyer | engineering team building a product | individual or team end-user | |
| pricing shape | $0.30 / hr of meeting time | $16.99–$30 / user / month[1] | |
| per-hour at 40 hr/mo Business | $0.30 | ~$0.50 ($30 ÷ 60 hr cap × 40 hr / 40 hr)[2] | |
| free tier | 10 hours / month | 300 minutes / month[3] | |
| raw outputs (audio · video · captions · chat) | yes — to your S3 bucket | no — locked in app | |
| brand the bot | yes (configurable bot_name) | no — bot is OtterPilot | |
| platforms | Meet, Teams, Zoom | Meet, Teams, Zoom, Webex | |
| consumer apps | — | iOS, Android, macOS, Windows, Chrome ext | |
| transcription quality | BYOK (Whisper, Deepgram, AssemblyAI on your own key); hosted Whisper-large-v3 ships Q3 2026 | Otter ASR (well-tuned) | |
| summarisation | BYO LLM via webhook payload | built-in (Otter AI Chat) |
03 · escenarios de precio
Tres puntos de uso: hobbyista, startup y empresa a escala. Fórmula visible por celda — cópiala a una hoja de cálculo, mete tus propios números.
10 horas de grabación de reunión por mes.
Different products. If you're a person who attends 10 meetings, Otter is the right purchase — you get a UI. We give you four files in a bucket.
1,000 horas de grabación de reunión por mes.
Apples to oranges: 30 Otter seats also gives you 30 humans using a polished app. 1,000 meetbot hours gives you raw signals ready to be ingested by your own product.
50,000 horas de grabación de reunión por mes.
At this scale you almost certainly aren't using Otter — you're building your own product on top of an infra layer like meetbot. The number is included for completeness, not as a real choice.
04 · dónde ganan ellos
Incluimos esta sección porque la alternativa — fingir que ganamos en todo — es deshonesta, y las comparaciones deshonestas son la razón por la que la mayoría no merecen leerse.
05 · dónde ganamos
Cada línea enlaza a la página de docs que lo prueba. Números, no adjetivos. Verificado contra la superficie pública de Otter.ai en la fecha de abajo.
06 · migración
Misma forma, mismos campos, distinto host. Reemplaza tu llamada de despacho de bot de Otter.ai por una de meetbot. Los payloads de webhook llegan en la misma forma JSON que tu handler ya parsea.
// Otter doesn't have a public bot-dispatch API.
// Their integration story is "your users sign in to Otter
// and it joins their meetings via OtterPilot."
// You can't programmatically dispatch a bot to a URL.
//
// If your product needs to drop a bot in a meeting on
// behalf of your customer — without your customer signing
// in to a third-party app — you need an infra API.// meetbot — drop a bot in any meeting, billed per minute
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: "YourProduct",
delivery: [{ transport: "webhook", url: WEBHOOK_URL }],
}),
});07 · faq
Verificado por última vez 2026-05-09 contra Otter.ai, su superficie pública. ¿Encontraste un error? Corrígelo en GitHub.