All-in-one API for Meeting Bots

Integrate your app or AI Agent with Zoom, Teams, and Google Meet to capture near real-time transcripts and meeting recordings

Zoom logo

Zoom

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

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.

See How to Integrate in Minutes

Watch our 4-minute tutorial to see ChatterBox in action

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    console.log('Bot started successfully! Session ID:', sessionId);
17
18    const socket = client.connectSocket(sessionId, {
19      onMeetingStarted: (data) => console.log('Meeting started:', data),
20      onMeetingFinished: (data) => console.log('Meeting finished:', data),
21      onTranscriptReceived: (data) => console.log('Transcript:', data),
22    });
23
24    // Handle cleanup when the process exits
25    process.on('exit', () => socket.close());
26  } catch (error) {
27    console.error('Failed to start the bot:', error.message || error);
28  }
29};
30
31startBot();

Try It

Paste your meeting link below to see ChatterBox in action!

Simple Pricing

Real-Time Analytics

$0.90/hour

Features

  • Real-Time Transcription
  • Languages Supported: English, Spanish, French, German, Hindi, Russian, Portuguese, Japanese, Italian, and Dutch
  • Custom Bot Name
  • Audio Recordings (mp3)
  • Video Recordings (mkv, available for Google Meet and Microsoft Teams)
  • Call Metadata

Trial Limitations

  • Sessions limited to 10 minutes
  • Trial keys valid for 90 days

Why Choose ChatterBox

Accurate, Real-Time Transcripts

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

Fully Managed Service

We take care of the infrastructure, scaling, and maintenance—so you can focus on building your product, not managing bot functionality.

Pay-As-You-Go Pricing

No hidden fees or upfront commitments—just simple, predictable costs that scale with your usage.

Latest from Our Blog

View All Posts
June 27, 20251 min read

New Leave API Method

Introducing the leave method endpoint for programmatically removing bots from meetings. Perfect for managing multiple bots in the same session.

Read more