MyMeetings Public API
These unauthenticated, read-only endpoints provide current public Alcoholics Anonymous meeting listings. Responses use JSON and may change as source listings are updated.
Meeting details
Retrieve one meeting using its positive numeric MyMeetings ID.
GET https://api.mymeetings.co/api/v1/meetings/4169440 Successful responses include the schedule, meeting formats, location, address, timezone, and online access fields when published.
Nearby meetings
Supply valid decimal coordinates. The endpoint returns up to six current meetings, ordered by distance in miles.
GET https://api.mymeetings.co/api/v1/meetings/closest?latitude=42.35&longitude=-71.05 latitudemust be between -90 and 90.longitudemust be between -180 and 180.
Meeting ID catalog
Page through meeting IDs using a keyset cursor. The maximum page size is 10,000.
GET https://api.mymeetings.co/api/v1/meetings/ids?after=0&limit=1000
Continue with next_cursor while has_more is true.
Model Context Protocol
Agents can use the stateless Streamable HTTP endpoint at https://mymeetings.co/mcp.
It exposes the read-only get_meeting and find_nearby_meetings tools.
Discover configuration through the current Server Card or the compatibility Server Card.
Usage notes
- Do not treat a listing as proof that a person attended a meeting.
- Schedules, room assignments, and online access details can change.
- Link users to
https://mymeetings.co/meeting/{id}for the current human-readable listing.