Integration Guide
Everything you need to integrate MeetBot into your application
Quick Start Guide
Follow these steps to send your first bot into a meeting, retrieve the recording, and get a transcript -- all through the API.
1
Create an API Key
Head over to the API Keys page in the dashboard and generate a new key. You will use this key to authenticate every API request.
Authenticate with your keyShell
2
Create a Bot
Create a bot resource tied to a specific meeting URL. Provide the platform, meeting link, and an optional display name.
create_bot.pyPython
3
Deploy the Bot
Once the bot is created, deploy it so it joins the meeting and begins recording automatically.
deploy_bot.pyPython
4
Get the Recording
After the meeting ends the bot will upload the recording. Fetch the download URL to access the file.
get_recording.pyPython
5
Transcribe
Start an asynchronous transcription job, poll until it completes, and retrieve the full transcript.
transcribe.pyPython
6
Set up Webhooks
Instead of polling, register a webhook endpoint to be notified in real time when recordings, transcripts, or bot events occur.
create_webhook.pyPython