π Build Meeting Assistants in Hours, Not Months
A Python client library for Vexa - the privacy-first, open-source API for real-time meeting transcription. Build powerful meeting assistants with just a few lines of code.
repo https://github.com/Vexa-ai/vexa
discord community https://discord.com/invite/Ga9duGkVz9
- π€ Meeting Bots: Send bots to automatically join Google Meet, (Zoom, Teams coming soon)
- β‘ Real-time: Get transcripts as meetings happen, not after
- π 109 Languages: Real-time transcription and translation across all of them
- π§ Auto Language Detection: No language setup needed - Vexa automatically detects what's being spoken
- π Real-time Translation: Choose any target language for instant translation instead of transcription
- π Webhook Automation: Get notified instantly when meetings end for seamless post-meeting workflows
- π Privacy-First: Open-source alternative to recall.ai - your data stays under your control
- π Rapid Development: Build complex meeting apps in hours
- π― Simple API: Clean abstractions that make building on top a joy
Transform your ideas into reality with Vexa's powerful API:
- Meeting Assistant Apps: Like Otter.ai, Fireflies.ai, Fathom
- CRM Integrations: Auto-populate meeting notes in Salesforce, HubSpot
- Compliance Tools: Automatically record and transcribe important business calls
- Language Learning: Real-time translation for international meetings
- Accessibility Tools: Live captions for hearing-impaired participants
- Analytics Dashboards: Extract insights from meeting conversations
These are the primary operations for API users who want to integrate Vexa's transcription capabilities into their applications. This includes bot management, accessing transcripts, and configuring webhooks.
These operations are exclusively for users who self-host Vexa and need to manage user accounts, create API tokens, and perform administrative tasks. Most API users will not need these operations.
Get your API key in 3 clicks at www.vexa.ai - no waiting, no approval process!
pip install vexa-client
from vexa_client import VexaClient
# Initialize the client
client = VexaClient(
api_key="your-api-key-here", # For user operations
)
meeting_id = "abc-def-ghi"
# Request a bot to join a meeting
meeting = client.request_bot(
platform="google_meet",
native_meeting_id=meeting_id,
bot_name="Vexa Bot",
language="en" # Optional - auto-detected if not provided
)
# get meeting transcript during or after the meeting
transcript = client.get_transcript("google_meet",meeting_id)
# switch to translation to a different language instead of transcription during meeting
client.update_bot_config(
platform="google_meet",
native_meeting_id=meeting_id,
language='es'
)
#stop the bot
client.stop_bot(platform="google_meet",native_meeting_id=meeting_id)
# delete meeting transcription for vexa
client.delete_meeting(
platform="google_meet",
native_meeting_id=meeting_id,
)
# No language specified - Vexa automatically detects what's being spoken
meeting = client.request_bot(
platform="google_meet",
native_meeting_id="abc-def-ghi",
bot_name="Smart Bot"
# language not specified - auto-detection enabled!
)
# Transcribe in specific language (if you know what will be spoken)
meeting = client.request_bot(
platform="google_meet",
native_meeting_id="abc-def-ghi",
language="es", # Spanish transcription
task="transcribe"
)
# Translate everything to English in real-time
meeting = client.request_bot(
platform="google_meet",
native_meeting_id="abc-def-ghi",
language="pt", # Target language (Portuguese)
task="translate" # Translation mode
)
Set up webhooks to get notified instantly when meetings end - perfect for automated post-meeting processing:
# Set up webhook to receive meeting completion notifications
client.set_webhook_url("https://your-server.com/webhook/vexa")
π Full API Reference https://github.com/Vexa-ai/vexa/blob/main/docs/user_api_guide.md
Set the webhook URL for the authenticated user.
Create a new user (Self-hosting admin only).
List users in the system (Self-hosting admin only).
Update user information (Self-hosting admin only).
Retrieve a user by email address (Self-hosting admin only).
Generate a new API token for a user (Self-hosting admin only).
- Python 3.7+
- requests >= 2.25.0
This project is licensed under the MIT License - see the LICENSE file for details.
π Help us reach 1000 stars! Current: GitHub stars β Goal: 1000 βοΈ
Join hundreds of developers building the future of meeting intelligence:
- π¬ Discord Community - Get help, share projects, connect with other builders
- π Vexa Website - Get your API key and explore features
- πΌ LinkedIn - Follow for updates and announcements
- π¦ X (@grankin_d) - Connect with the founder
"Built our meeting assistant MVP in 3 hours with Vexa. The API is incredibly clean and the real-time transcription is spot-on." - Open Source Developer
"Finally, a privacy-first alternative to proprietary solutions. Perfect for our enterprise needs." - Enterprise Developer
"The 109-language support is a game changer for our international team meetings." - Startup Founder
For support and questions:
- π¬ Discord Community - Fastest way to get help
- π Documentation - Comprehensive guides and tutorials
- π Issues - Report bugs and request features
- βοΈ Email: support@vexa.ai
Ready to build the future of meeting intelligence? Get started with Vexa today!