Bot Acceptor API
HTTP API for the Google Meet bot acceptor. One meeting at a time, no auth, no database.
Bot Acceptor API
Google Meet bot that auto-admits participants. Runs as an HTTP API server with webhook notifications.
Base URL
https://creator.gmeetrecorder.comEndpoints
| Method | Path | Description |
|---|---|---|
POST | /meeting | Create or join a meeting |
GET | /meeting | Current meeting status |
DELETE | /meeting | End current meeting |
PUT | /cookies | Replace cookie file |
GET | /cookies | Cookie file info |
Cookie Management
Cookies can be refreshed at runtime without restarting the server:
PUT /cookiesreplaces the server's default cookie file. All future meetings use the new cookies automatically.GET /cookiesreturns cookie metadata (count, critical cookie presence, earliest expiry) without exposing values.- Inline cookies can be passed directly in
POST /meetingfor single-session use without modifying the cookie file.
Webhooks
When a webhook_url is configured, events are POSTed as fire-and-forget:
meeting.created— meeting URL and timestampparticipant.admitted— count, total, participant names, risky flagparticipant.count_changed— current count and deltameeting.ended— reason and total admitted count