How to Share a Google Calendar Event URL
You can easily share a Google Calendar event if you know the url syntax Google uses. When the url is opened in a browser, it prompts the person you want to share an event with to save it to their calendar.
Demonstrating Google Calendar URL Arguments in Python
By simply knowing the proper url arguments, you can enable people to quickly save a Google Calendar event. This example uses the Python standard library: urllib to format the Google calendar url parameters and webbrowser to open the url in a browser. This is a handy little trick to keep in your back pocket!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | from urllib.parse import urlencode import webbrowser def new_google_calendar_event(): """ Pass an event to Google Calendar with url arguments. Base URL: https://calendar.google.com/calendar/render URL Arguments: action: TEMPLATE text: Event Title dates: start_datetime/end_datetime details: event description or link to more info location: url to webcast, call or physical location name ctz: set the time zone by name, ex: America/New_York recur: set a recurring event, ex: RRULE:FREQ%3DWEEKLY;INTERVAL%3D3 crm: if Free, Busy, or Out of Office, ex: AVAILABLE, BUSY or BLOCKING add: add a list of guests by email, ex: [email protected],[email protected] """ parameters = { "action": "TEMPLATE", "text": "Title of Event", "dates": "20240504T123000Z/20240504T133000Z", "details": "Event Details: https://lofipython.com", "location": "link to webcast, call or physical location", "ctz": "America/Chicago", "crm": "BUSY" } # Returns str of URL encoded parameters. url_parameters = urlencode(parameters) url = f"https://calendar.google.com/calendar/render?{url_parameters}" print(url) return url url = new_google_calendar_event() webbrowser.open_new(url) |

I was struggling to find any official documentation, so I figured Google's Gemini AI model might know where this is documented.

Using the app on my phone, Gemini informed me of a useful Google Calendar Help thread response from Neil@GCalTools.
- The official documentation says to use "https://calendar.google.com/calendar/render" instead of "https://calendar.google.com/calendar/event", but they both work, at least for now.
- - Neil@GCalTools, Google Calendar Help
Relevant Links
Read more documentation of possible url arguments in the add-event-to-calendar-docs Github repo.