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 moreIntegrate 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();
Paste your meeting link below to see ChatterBox in action!
$0.90/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.
Introducing the leave method endpoint for programmatically removing bots from meetings. Perfect for managing multiple bots in the same session.
Read moreChatterBox now supports Microsoft Teams meetings. Deploy bots to Teams meetings using the same unified API with platform parameter set to "teams".
Read moreWe've added new options to customize transcription quality with language and model selection. Learn how these features can improve accuracy and precision in your meeting transcripts.
Read more