New Security Features and Enhanced Webhooks
We've enhanced our API security with temporary tokens and improved webhook functionality. Learn how these updates make your meeting bots more secure and flexible.
Read moreIntegrate with Zoom, Teams, and Google Meet to capture near real-time transcripts
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.
We've enhanced our API security with temporary tokens and improved webhook functionality. Learn how these updates make your meeting bots more secure and flexible.
Read moreOur new Python SDK makes it simple to create meeting bots that handle transcription, event tracking, and more. Get started with just a few lines of code.
Read moreExplore how AI meeting assistants are transforming virtual collaboration. Learn about their capabilities, real-world applications, and how to build your own.
Read more