모든 비교 · vs Otter.ai
This page exists because Otter shows up in every "meeting recording" search. We're not the same product: Otter is the end-user SaaS, and meetbot is the developer API a product like Otter would be built on. Below we explain the framing, the price shape (per-seat vs per-hour), and when you'd pick one over the other. If you arrived here looking for a meeting-notes app for yourself, the honest answer is: install Otter. If you're a developer shipping a feature that records meetings, read on.
01 · 요약
Otter.ai을(를) 사용해야 할 때…
meetbot을 사용해야 할 때…
02 · 사양 표
페이지 푸터의 날짜에 인용된 출처에 대해 확인된 숫자. 무언가 변경되면 PR로 수정해 주세요.
| 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 | $5 one-time welcome credit | 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 Web, Zoom SDK, Webex, Whereby, Jitsi, Discord | 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 · 가격 시나리오
세 가지 사용 지점: 취미가, 스타트업, 규모 있는 회사. 셀별 공식 가시화 — 스프레드시트에 복사하고 자신의 숫자를 넣으세요.
월 10시간의 회의 녹화.
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시간의 회의 녹화.
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시간의 회의 녹화.
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 · 그들이 이기는 곳
이 섹션을 포함하는 이유는 그 대안 — 어디서나 우리가 이긴다고 척하는 것 — 이 부정직하고, 부정직한 비교 페이지가 대부분 읽을 가치가 없는 이유이기 때문입니다.
05 · 우리가 이기는 곳
각 줄은 그것을 증명하는 docs 페이지로 링크됩니다. 형용사가 아닌 숫자. 아래 날짜 기준 Otter.ai의 공개 표면에 대해 출처화되었습니다.
06 · 마이그레이션
같은 형태, 같은 필드, 다른 호스트. Otter.ai 의 bot 디스패치 호출을 meetbot 호출로 교체하세요. webhook 페이로드는 핸들러가 이미 파싱하는 같은 JSON 형태로 도착합니다.
// 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, metered by the second
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",
webhook_url: WEBHOOK_URL,
}),
});07 · FAQ
마지막 확인 2026-05-09 대상 Otter.ai의 공개 정보. 오류를 발견하셨나요? GitHub에서 수정.