All-in-one API to integrate with Zoom, Teams, Google Meet, and capture real-time transcripts

Zoom logo

Zoom

Seamlessly connect with Zoom meetings and capture every word with real-time transcription.

Coming Soon
MS Teams logo

MS Teams

Record and transcribe all your Teams meetings effortlessly, ensuring you never miss important details.

Google Meet logo

Google Meet

Connect ChatterBox with Google Meet for live transcription and capture the conversation instantly.

Integrate in Minutes

1import { ChatterBox } from '@chatterboxio/bot';
2
3const client = ChatterBox({
4  authorizationToken: '******************',
5});
6
7const startBot = async () => {
8  try {
9    const { id: sessionId } = await client.sendBot({
10      platform: 'zoom',
11      meeting_id: '9882112233',
12      meeting_password: '******************',
13      bot_name: 'ChatterBox',
14    });
15
16    const socket = client.connectSocket(sessionId, {
17      onMeetingStarted: console.log,
18      onMeetingFinished: console.log,
19      onTranscriptReceived: ({ speaker, text }) => console.log(`Speaker: ${speaker}, Transcript: ${text}`),
20    });
21
22    window.addEventListener('beforeunload', socket.close.bind(socket));
23  } catch (error) {
24    console.error('Failed to start the bot:', error.message || error);
25  }
26};
27
28startBot();

Try It

Paste your meeting link below to see ChatterBox in action!

Pricing Plans

Real-Time Analytics

$0.90/hour

  • Real-Time Transcription
  • Languages Supported: English
  • Custom Bot Name
  • Audio Recordings (mp3)
  • Call Metadata

Post-Call Analytics

$0.80/hour

  • Async Transcription
  • Languages Supported: English, Spanish, French, German, Italian, Portuguese, Dutch, Hindi, Japanese, Chinese, Finnish, Korean, Polish, Russian, Turkish, Ukrainian, Vietnamese
  • Custom Bot Name
  • Audio Recordings (mp3)
  • Call Metadata

Why Choose ChatterBox

Accurate, Real-Time Transcripts

Capture every word with precision, ensuring you never miss a detail during important meetings.

Easy Integration with Popular Platforms

Effortlessly connect with popular communication platforms to empower your applications.

Affordable Pricing

Get access to premium features without breaking the bank, as we continuously optimize our bots to keep costs low.

Latest from Our Blog