ChatterBox Service Shutdown Announcement
Important announcement regarding the shutdown of the ChatterBox service. We thank all our users for their support and provide details on the shutdown timeline.
Read moreService Shutdown Announcement
ChatterBox is shutting down. New signups are disabled. Existing users have access until December 1, 2025. Read the full announcement
Integrate your app or AI Agent with Zoom, Teams, and Google Meet to capture near real-time transcripts and meeting recordings
Seamlessly connect with Zoom meetings and capture every word with real-time transcription.
Record and transcribe all your Teams meetings effortlessly, ensuring you never miss important details.
Connect ChatterBox with Google Meet for live transcription and capture the conversation instantly.
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();$0.45/hour
Capture every word with precision, ensuring you never miss a detail during important meetings.
We take care of the infrastructure, scaling, and maintenance—so you can focus on building your product, not managing bot functionality.
No hidden fees or upfront commitments—just simple, predictable costs that scale with your usage.
Important announcement regarding the shutdown of the ChatterBox service. We thank all our users for their support and provide details on the shutdown timeline.
Read moreNew optional parameter to delay bot exit when it becomes the only participant—defaults to 5 seconds.
Read moreIntroduce a timeout to automatically remove bots from meetings when no transcripts are being captured, ideal for multi-bot scenarios.
Read more