Real-time meeting transcription for Google Meet. Join meetings via API, get live transcripts, and build meeting-powered applications.
POST bot → GET transcripts. That's it.Two API calls is all it takes to start transcribing your meetings.
curl -X POST http://localhost:3001/bots \ -H "Content-Type: application/json" \ -H "X-API-Key: YOUR_API_KEY" \ -d '{ "platform": "google_meet", "nativeMeetingId": "abc-defg-hij" }'curl http://localhost:3001/transcripts/google_meet/abc-defg-hij \ -H "X-API-Key: YOUR_API_KEY" # Response:# {# "success": true,# "data": {# "meeting": { "id": "...", "platform": "google_meet", "nativeMeetingId": "abc-defg-hij" },# "segments": [# { "speaker": "John", "text": "Let's discuss the roadmap", "startTime": 0 },# { "speaker": "Sarah", "text": "I have the Q4 metrics ready", "startTime": 30 }# ],# "totalSegments": 2,# "fullText": "..."# },# "timestamp": "2024-03-15T10:30:00.000Z"# }A complete API for meeting transcription, built for developers.
Sub-second latency for live transcripts via WebSocket. Get speaker-labeled text as the conversation happens.
POST bot, GET transcript. Two calls to start transcribing any Google Meet. Clean, predictable JSON responses.
Create and manage API keys from the dashboard. Scope permissions and rotate keys without downtime.
View meetings, transcripts, and manage bots from one place. Full visibility into your transcription pipeline.
Sign up and create an API key from the dashboard. It takes less than a minute.
Make a simple POST request with your meeting URL. The bot joins automatically and starts listening.
GET the transcript via REST API or subscribe to live updates via WebSocket. Speaker labels included.
Get your API key and start sending bots to your meetings in minutes. Free to get started.