Affordable Google Meet recording bots
Welcome to the Bit Bot Records API documentation. This service allows you to record Google Meet sessions effortlessly at an affordable cost.
POST https://api.bitbotrecords.com/record/start
Start a new Google Meet recording session.
{
"meetingUrl": "https://meet.google.com/abc-defg-hij",
"email": "[email protected]"
}
POST https://api.bitbotrecords.com/record/stop
Stop an ongoing Google Meet recording session.
{
"sessionId": "12345"
}
GET https://api.bitbotrecords.com/record/list
Retrieve a list of your recorded sessions.
[
{
"sessionId": "12345",
"meetingUrl": "https://meet.google.com/abc-defg-hij",
"recordingUrl": "https://storage.bitbotrecords.com/recordings/12345.mp4",
"status": "completed"
}
]