Bot Acceptor
Google Meet bot that auto-admits participants. HTTP API with cookie management and webhooks.
Bot Acceptor
A headless Google Meet bot that automatically admits waiting participants. Runs as a single-meeting HTTP API — no auth, no database.
Quick Start
# Start the API
./run.sh --port 7391
# Create a meeting
curl -X POST localhost:7391/meeting \
-H 'Content-Type: application/json' \
-d '{"duration": 60}'
# Check status
curl localhost:7391/meeting
# End the meeting
curl -X DELETE localhost:7391/meeting