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.com

Endpoints

MethodPathDescription
POST/meetingCreate or join a meeting
GET/meetingCurrent meeting status
DELETE/meetingEnd current meeting
PUT/cookiesReplace cookie file
GET/cookiesCookie file info

Cookies can be refreshed at runtime without restarting the server:

  • PUT /cookies replaces the server's default cookie file. All future meetings use the new cookies automatically.
  • GET /cookies returns cookie metadata (count, critical cookie presence, earliest expiry) without exposing values.
  • Inline cookies can be passed directly in POST /meeting for 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 timestamp
  • participant.admitted — count, total, participant names, risky flag
  • participant.count_changed — current count and delta
  • meeting.ended — reason and total admitted count

On this page