Google Meet Integration

MeetingTranscription API

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.

POST1. Send a bot to your meeting
Create Bot
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"
}'
GET2. Retrieve the transcript
Get Transcript
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"
# }

Everything you need to transcribe meetings

A complete API for meeting transcription, built for developers.

Real-time Transcription

Sub-second latency for live transcripts via WebSocket. Get speaker-labeled text as the conversation happens.

Simple REST API

POST bot, GET transcript. Two calls to start transcribing any Google Meet. Clean, predictable JSON responses.

API Key Management

Create and manage API keys from the dashboard. Scope permissions and rotate keys without downtime.

Meeting Dashboard

View meetings, transcripts, and manage bots from one place. Full visibility into your transcription pipeline.

Up and running in 3 steps

1

Get your API key

Sign up and create an API key from the dashboard. It takes less than a minute.

2

Send a bot to your Google Meet

Make a simple POST request with your meeting URL. The bot joins automatically and starts listening.

3

Retrieve real-time transcripts

GET the transcript via REST API or subscribe to live updates via WebSocket. Speaker labels included.

Start transcribing your meetings today

Get your API key and start sending bots to your meetings in minutes. Free to get started.